mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
16 lines
138 B
Nix
16 lines
138 B
Nix
|
{ faust
|
||
|
, alsaLib
|
||
|
, qt4
|
||
|
}:
|
||
|
|
||
|
faust.wrapWithBuildEnv {
|
||
|
|
||
|
baseName = "faust2alqt";
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
alsaLib
|
||
|
qt4
|
||
|
];
|
||
|
|
||
|
}
|