From 14ce4947b2109b22ff01d9a740cccc2573ee43d5 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Tue, 30 Jul 2019 19:40:18 +0200 Subject: [PATCH] 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. --- pkgs/applications/video/k9copy/default.nix | 3 +++ pkgs/development/libraries/kpmcore/default.nix | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/video/k9copy/default.nix b/pkgs/applications/video/k9copy/default.nix index 1e8883eae7ffa..02a0f275f570e 100644 --- a/pkgs/applications/video/k9copy/default.nix +++ b/pkgs/applications/video/k9copy/default.nix @@ -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; }; } diff --git a/pkgs/development/libraries/kpmcore/default.nix b/pkgs/development/libraries/kpmcore/default.nix index 5c53f5e6ad5da..52e6264843bfb 100644 --- a/pkgs/development/libraries/kpmcore/default.nix +++ b/pkgs/development/libraries/kpmcore/default.nix @@ -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"; }; }