summary refs log tree commit diff
path: root/pkgs/applications/audio/faust/faust2alsa.nix
diff options
context:
space:
mode:
authorPatrick Mahoney <pat@polycrystal.org>2015-03-23 12:01:27 -0500
committerPatrick Mahoney <pat@polycrystal.org>2015-03-23 12:01:54 -0500
commit7503d606e437271c70c7fc25d39fb2bdbfe92867 (patch)
tree7d82c055f9328559afa93483b38312bfd828a2ad /pkgs/applications/audio/faust/faust2alsa.nix
parent04c96957ca8ed31f54acf00e19afbd708ee3014a (diff)
downloadnixpkgs-7503d606e437271c70c7fc25d39fb2bdbfe92867.tar
nixpkgs-7503d606e437271c70c7fc25d39fb2bdbfe92867.tar.gz
nixpkgs-7503d606e437271c70c7fc25d39fb2bdbfe92867.tar.bz2
nixpkgs-7503d606e437271c70c7fc25d39fb2bdbfe92867.tar.lz
nixpkgs-7503d606e437271c70c7fc25d39fb2bdbfe92867.tar.xz
nixpkgs-7503d606e437271c70c7fc25d39fb2bdbfe92867.tar.zst
nixpkgs-7503d606e437271c70c7fc25d39fb2bdbfe92867.zip
faust: add various faust2appl scripts
Diffstat (limited to 'pkgs/applications/audio/faust/faust2alsa.nix')
-rw-r--r--pkgs/applications/audio/faust/faust2alsa.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/applications/audio/faust/faust2alsa.nix b/pkgs/applications/audio/faust/faust2alsa.nix
new file mode 100644
index 00000000000..2fe03d73a23
--- /dev/null
+++ b/pkgs/applications/audio/faust/faust2alsa.nix
@@ -0,0 +1,29 @@
+{ 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
+  ];
+
+}