10 lines
136 B
Nix
10 lines
136 B
Nix
|
{
|
||
|
mkDerivation,
|
||
|
extra-cmake-modules,
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
pname = "oxygen-sounds";
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
}
|