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
2019-05-22 13:03:39 +02:00
, gdk-pixbuf
2015-03-23 18:01:27 +01:00
, glib
, gtk2
2015-03-23 18:01:27 +01:00
, pango
}:
faust.wrapWithBuildEnv {
baseName = "faust2alsa";
propagatedBuildInputs = [
alsaLib
atk
cairo
fontconfig
freetype
2019-05-22 13:03:39 +02:00
gdk-pixbuf
2015-03-23 18:01:27 +01:00
glib
gtk2
2015-03-23 18:01:27 +01:00
pango
];
}