mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
16 lines
138 B
Nix
16 lines
138 B
Nix
{ faust
|
|
, alsaLib
|
|
, qt4
|
|
}:
|
|
|
|
faust.wrapWithBuildEnv {
|
|
|
|
baseName = "faust2alqt";
|
|
|
|
propagatedBuildInputs = [
|
|
alsaLib
|
|
qt4
|
|
];
|
|
|
|
}
|