mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
16 lines
140 B
Nix
16 lines
140 B
Nix
{ faust
|
|
, alsa-lib
|
|
, qt4
|
|
}:
|
|
|
|
faust.wrapWithBuildEnv {
|
|
|
|
baseName = "faust2alqt";
|
|
|
|
propagatedBuildInputs = [
|
|
alsa-lib
|
|
qt4
|
|
];
|
|
|
|
}
|