mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 00:22:13 +00:00
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
|
|
];
|
|
}
|