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