summary refs log tree commit diff
path: root/pkgs/applications/audio/freewheeling/default.nix
diff options
context:
space:
mode:
authorRaffael Mancini <raffael@mancini.lu>2014-09-26 17:20:02 +0200
committerRaffael Mancini <raffael@mancini.lu>2014-09-26 17:20:02 +0200
commit87dc6a2be603f2965b8b527dc3ef831d1bc483d2 (patch)
tree879e79e9da02b3d12078b048cebde5ef32a09452 /pkgs/applications/audio/freewheeling/default.nix
parentd1c7ac1388084ddc6b260a88d221333b26eacd7e (diff)
downloadnixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.tar
nixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.tar.gz
nixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.tar.bz2
nixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.tar.lz
nixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.tar.xz
nixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.tar.zst
nixlib-87dc6a2be603f2965b8b527dc3ef831d1bc483d2.zip
Added Freewheeling
a live looping instrument for jack with MIDI support
revision r100 from subversion
Diffstat (limited to 'pkgs/applications/audio/freewheeling/default.nix')
-rw-r--r--pkgs/applications/audio/freewheeling/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/applications/audio/freewheeling/default.nix b/pkgs/applications/audio/freewheeling/default.nix
new file mode 100644
index 000000000000..8be639b762be
--- /dev/null
+++ b/pkgs/applications/audio/freewheeling/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchsvn, pkgconfig, autoconf, automake, gnutls, freetype, SDL, SDL_gfx, SDL_ttf, liblo, libxml2, alsaLib, jack2, libvorbis, libsndfile, libogg }:
+
+stdenv.mkDerivation {
+  name = "freewheeling-100";
+
+  src = fetchsvn {
+    url = svn://svn.code.sf.net/p/freewheeling/code;
+    rev = 100;
+    sha256 = "1m6z7p93xyha25qma9bazpzbp04pqdv5h3yrv6851775xsyvzksv";
+  };
+
+  buildInputs = [ pkgconfig autoconf automake gnutls freetype
+                  SDL SDL_gfx SDL_ttf liblo libxml2 jack2 alsaLib
+                  libvorbis libsndfile libogg ];
+
+  preConfigure = "autoreconf -vfi";
+
+  patches = [ ./am_path_sdl.patch ./xml.patch ];
+  
+  meta = {
+    description = "A live looping instrument with jack and MIDI support";
+    longDescription = "";
+    version = "r100";
+    homepage = "http://freewheeling.sourceforge.net";
+    license = stdenv.lib.licenses.gpl2;
+    maintainers = [ stdenv.lib.maintainers.sepi ];
+    priority = 10;
+    platforms = stdenv.lib.platforms.linux;
+  };
+}