summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2016-11-07 14:17:49 +0100
committerBart Brouns <bart@magnetophon.nl>2016-11-07 14:17:49 +0100
commitf7b7d860158e7ccffc4e4f8346c1c89d52ee61c8 (patch)
tree6141591fba242dcb95b53cc487ab8dd726f1150e /pkgs/development/libraries
parentc30ff9effc1199e736a52f1b5175166530915211 (diff)
downloadnixlib-f7b7d860158e7ccffc4e4f8346c1c89d52ee61c8.tar
nixlib-f7b7d860158e7ccffc4e4f8346c1c89d52ee61c8.tar.gz
nixlib-f7b7d860158e7ccffc4e4f8346c1c89d52ee61c8.tar.bz2
nixlib-f7b7d860158e7ccffc4e4f8346c1c89d52ee61c8.tar.lz
nixlib-f7b7d860158e7ccffc4e4f8346c1c89d52ee61c8.tar.xz
nixlib-f7b7d860158e7ccffc4e4f8346c1c89d52ee61c8.tar.zst
nixlib-f7b7d860158e7ccffc4e4f8346c1c89d52ee61c8.zip
lv2-unstable: init at 2016-10-23
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/audio/lv2/unstable.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/libraries/audio/lv2/unstable.nix b/pkgs/development/libraries/audio/lv2/unstable.nix
new file mode 100644
index 000000000000..034282c4f3a5
--- /dev/null
+++ b/pkgs/development/libraries/audio/lv2/unstable.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchgit, gtk2, libsndfile, pkgconfig, python }:
+
+stdenv.mkDerivation rec {
+  name = "lv2-unstable-${version}";
+  version = "2016-10-23";
+
+  src = fetchgit {
+    url = "http://lv2plug.in/git/cgit.cgi/lv2.git";
+    rev = "b36868f3b96a436961c0c51b5b2dd71d05da9b12";
+    sha256 = "1sx39j0gary2nayzv7xgqcra7z1rcw9hrafkji05aksdwf7q0pdm";
+  };
+
+  buildInputs = [ gtk2 libsndfile pkgconfig python ];
+
+  configurePhase = "${python.interpreter} waf configure --prefix=$out";
+
+  buildPhase = "${python.interpreter} waf";
+
+  installPhase = "${python.interpreter} waf install";
+
+  meta = with stdenv.lib; {
+    homepage = http://lv2plug.in;
+    description = "A plugin standard for audio systems";
+    license = licenses.mit;
+    maintainers = [ maintainers.goibhniu ];
+    platforms = platforms.linux;
+  };
+}