From dbeb068a0ebb64a80b139976481a361008e4d2b2 Mon Sep 17 00:00:00 2001 From: Yves Fischer Date: Thu, 18 Mar 2021 00:19:39 +0100 Subject: [PATCH] qcad: apply r-rmcgibbo suggestions --- pkgs/applications/misc/qcad/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/qcad/default.nix b/pkgs/applications/misc/qcad/default.nix index bc927c48598a..6b2418ab57cd 100644 --- a/pkgs/applications/misc/qcad/default.nix +++ b/pkgs/applications/misc/qcad/default.nix @@ -25,6 +25,7 @@ mkDerivationWith stdenv.mkDerivation rec { }; patches = [ + # Patch directory lookup, remove __DATE__ and executable name ./application-dir.patch ]; @@ -90,12 +91,10 @@ mkDerivationWith stdenv.mkDerivation rec { qttools ]; - enableParallelBuilding = true; - meta = with lib; { description = "2D CAD package based on Qt"; homepage = "https://qcad.org"; - license = licenses.gpl3; + license = licenses.gpl3Only; maintainers = with maintainers; [ yvesf ]; platforms = qtbase.meta.platforms; };