8e9fca18e3
Provides a globally unique name (plasmaPackage) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
22 lines
286 B
Nix
22 lines
286 B
Nix
{ plasmaPackage
|
|
, extra-cmake-modules
|
|
, kcoreaddons
|
|
, ki18n
|
|
, kpty
|
|
, knotifications
|
|
, kdbusaddons
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "kwrited";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
kcoreaddons
|
|
ki18n
|
|
kpty
|
|
knotifications
|
|
kdbusaddons
|
|
];
|
|
}
|