mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
29 lines
286 B
Nix
29 lines
286 B
Nix
{ faust
|
|
, alsaLib
|
|
, atk
|
|
, cairo
|
|
, fontconfig
|
|
, freetype
|
|
, gdk-pixbuf
|
|
, glib
|
|
, gtk2
|
|
, pango
|
|
}:
|
|
|
|
faust.wrapWithBuildEnv {
|
|
|
|
baseName = "faust2alsa";
|
|
|
|
propagatedBuildInputs = [
|
|
alsaLib
|
|
atk
|
|
cairo
|
|
fontconfig
|
|
freetype
|
|
gdk-pixbuf
|
|
glib
|
|
gtk2
|
|
pango
|
|
];
|
|
|
|
}
|