![Thomas Tuegel](/assets/img/avatar_default.png)
Provides a globally unique name (plasmaPackage) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
16 lines
215 B
Nix
16 lines
215 B
Nix
{ plasmaPackage
|
|
, extra-cmake-modules
|
|
, libXrandr
|
|
, qtx11extras
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "libkscreen";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
libXrandr
|
|
qtx11extras
|
|
];
|
|
}
|