mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
16 lines
138 B
Nix
16 lines
138 B
Nix
{ faust
|
|
, alsaLib
|
|
, qt4
|
|
}:
|
|
|
|
faust.wrapWithBuildEnv {
|
|
|
|
baseName = "faust2alqt";
|
|
|
|
propagatedBuildInputs = [
|
|
alsaLib
|
|
qt4
|
|
];
|
|
|
|
}
|