k9copy, kpmcore: Mark as broken
See: https://github.com/NixOS/nixpkgs/pull/63260#pullrequestreview-251601561 The build for kpmcore is only broken when the Qt version is older than 5.12.
This commit is contained in:
parent
8760c695d4
commit
14ce4947b2
@ -56,5 +56,8 @@ stdenv.mkDerivation rec {
|
|||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
maintainers = with stdenv.lib.maintainers; [ flosse ];
|
maintainers = with stdenv.lib.maintainers; [ flosse ];
|
||||||
platforms = stdenv.lib.platforms.unix;
|
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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -28,6 +28,8 @@ in stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
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";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user