nixpkgs/pkgs/applications/audio/faust/faust2alsa.nix
2019-07-22 18:50:57 -04:00

30 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
];
}