mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
10 lines
136 B
Nix
10 lines
136 B
Nix
|
{
|
||
|
mkDerivation,
|
||
|
extra-cmake-modules,
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
pname = "oxygen-sounds";
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
}
|