qt5: move kdeDerivation to qt5.mkDerivation

This commit is contained in:
Thomas Tuegel
2017-06-18 08:42:19 -05:00
parent 210f688802
commit 7b6f8dc77f
18 changed files with 93 additions and 73 deletions
@@ -1,11 +1,11 @@
{ kdeDerivation, kdeWrapper, fetchurl, lib
, ecm, kdoctools
{ mkDerivation, kdeWrapper, fetchurl, lib
, extra-cmake-modules, kdoctools
, kconfig, kinit, kpmcore
, eject, libatasmart }:
let
pname = "partitionmanager";
unwrapped = kdeDerivation rec {
unwrapped = mkDerivation rec {
name = "${pname}-${version}";
version = "3.0.1";
@@ -19,11 +19,10 @@ let
license = licenses.gpl2;
maintainers = with maintainers; [ peterhoeg ];
};
nativeBuildInputs = [ ecm kdoctools ];
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
# refer to kpmcore for the use of eject
buildInputs = [ eject libatasmart ];
propagatedBuildInputs = [ kconfig kinit kpmcore ];
enableParallelBuilding = true;
};
in kdeWrapper {