summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/audio
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2016-11-01 01:14:13 +0100
committerBart Brouns <bart@magnetophon.nl>2017-01-11 02:17:39 +0100
commit3c36c85b1c9cdc2542aa9d963245e6b3d0159cec (patch)
tree32edd063205576de6b83de1dede0475a0afd42bf /pkgs/development/libraries/audio
parentacc889f5ed82c7fbdc3fb24bf3a767a875b8eb9c (diff)
lv2-git: init at 2016-10-23
Diffstat (limited to 'pkgs/development/libraries/audio')
-rw-r--r--pkgs/development/libraries/audio/lv2/lv2-git.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/libraries/audio/lv2/lv2-git.nix b/pkgs/development/libraries/audio/lv2/lv2-git.nix
new file mode 100644
index 000000000000..e3230a86e575
--- /dev/null
+++ b/pkgs/development/libraries/audio/lv2/lv2-git.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchgit, gtk2, libsndfile, pkgconfig, python }:
+
+stdenv.mkDerivation rec {
+ name = "lv2-git-${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 waf configure --prefix=$out";
+
+ buildPhase = "python waf";
+
+ installPhase = "python 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;
+ };
+}