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