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