8e9fca18e3
Provides a globally unique name (plasmaPackage) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
19 lines
250 B
Nix
19 lines
250 B
Nix
{ plasmaPackage
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, kdelibs4support
|
|
, qtx11extras
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "kgamma5";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
];
|
|
buildInputs = [
|
|
kdelibs4support
|
|
qtx11extras
|
|
];
|
|
}
|