Skip to content

Commit

Permalink
k9copy, kpmcore: Mark as broken
Browse files Browse the repository at this point in the history
See: #63260 (review)

The build for kpmcore is only broken when the Qt version is older than
5.12.
  • Loading branch information
primeos committed Jul 30, 2019
1 parent 8760c69 commit 14ce494
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions pkgs/applications/video/k9copy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,8 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ flosse ];
platforms = stdenv.lib.platforms.unix;
# TODO: The software is deprecated and the build is broken, see:
# https://github.com/NixOS/nixpkgs/pull/63260#issuecomment-503506487
broken = true;
};
}
4 changes: 3 additions & 1 deletion pkgs/development/libraries/kpmcore/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ in stdenv.mkDerivation rec {
enableParallelBuilding = true;

meta = with stdenv.lib; {
maintainers = with lib.maintainers; [ peterhoeg ];
maintainers = with lib.maintainers; [ peterhoeg ];
# The build requires at least Qt 5.12:
broken = lib.versionOlder qtbase.version "5.12.0";
};
}

0 comments on commit 14ce494

Please sign in to comment.