nixpkgs/pkgs/applications/audio/faust/faust2alsa.nix

30 lines
286 B
Nix
Raw Normal View History

2015-03-23 18:01:27 +01:00
{ faust
, alsaLib
, atk
, cairo
, fontconfig
, freetype
, gdk_pixbuf
, glib
, gtk2
2015-03-23 18:01:27 +01:00
, pango
}:
faust.wrapWithBuildEnv {
baseName = "faust2alsa";
propagatedBuildInputs = [
alsaLib
atk
cairo
fontconfig
freetype
gdk_pixbuf
glib
gtk2
2015-03-23 18:01:27 +01:00
pango
];
}