mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
30 lines
284 B
Nix
30 lines
284 B
Nix
{ faust
|
|
, alsaLib
|
|
, atk
|
|
, cairo
|
|
, fontconfig
|
|
, freetype
|
|
, gdk_pixbuf
|
|
, glib
|
|
, gtk
|
|
, pango
|
|
}:
|
|
|
|
faust.wrapWithBuildEnv {
|
|
|
|
baseName = "faust2alsa";
|
|
|
|
propagatedBuildInputs = [
|
|
alsaLib
|
|
atk
|
|
cairo
|
|
fontconfig
|
|
freetype
|
|
gdk_pixbuf
|
|
glib
|
|
gtk
|
|
pango
|
|
];
|
|
|
|
}
|