mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
13 lines
162 B
Nix
13 lines
162 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, fontforge
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "oxygen-fonts";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
fontforge
|
|
];
|
|
}
|