summary refs log tree commit diff
path: root/pkgs/development/libraries/audio/lv2
diff options
context:
space:
mode:
authorBart Brouns <bart@magnetophon.nl>2016-11-01 02:00:07 +0100
committerBart Brouns <bart@magnetophon.nl>2017-01-11 02:21:00 +0100
commit5abcc7d22ad33d820b882a6888dbec06cc7a378f (patch)
tree6e167197874bc9d96df2e38405e6f056b24e81d4 /pkgs/development/libraries/audio/lv2
parent1b8ad9685884e4f8a02b7f76a2d595dbaf7ece0c (diff)
downloadnixpkgs-5abcc7d22ad33d820b882a6888dbec06cc7a378f.tar
nixpkgs-5abcc7d22ad33d820b882a6888dbec06cc7a378f.tar.gz
nixpkgs-5abcc7d22ad33d820b882a6888dbec06cc7a378f.tar.bz2
nixpkgs-5abcc7d22ad33d820b882a6888dbec06cc7a378f.tar.lz
nixpkgs-5abcc7d22ad33d820b882a6888dbec06cc7a378f.tar.xz
nixpkgs-5abcc7d22ad33d820b882a6888dbec06cc7a378f.tar.zst
nixpkgs-5abcc7d22ad33d820b882a6888dbec06cc7a378f.zip
lilv and sord: remove svn versions and deploy release version
Diffstat (limited to 'pkgs/development/libraries/audio/lv2')
-rw-r--r--pkgs/development/libraries/audio/lv2/default.nix6
-rw-r--r--pkgs/development/libraries/audio/lv2/lv2-git.nix28
2 files changed, 3 insertions, 31 deletions
diff --git a/pkgs/development/libraries/audio/lv2/default.nix b/pkgs/development/libraries/audio/lv2/default.nix
index 34301412f56..dafd39efee9 100644
--- a/pkgs/development/libraries/audio/lv2/default.nix
+++ b/pkgs/development/libraries/audio/lv2/default.nix
@@ -11,11 +11,11 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ gtk2 libsndfile pkgconfig python ];
 
-  configurePhase = "python waf configure --prefix=$out";
+  configurePhase = "${python.interpreter} waf configure --prefix=$out";
 
-  buildPhase = "python waf";
+  buildPhase = "${python.interpreter} waf";
 
-  installPhase = "python waf install";
+  installPhase = "${python.interpreter} waf install";
 
   meta = with stdenv.lib; {
     homepage = http://lv2plug.in;
diff --git a/pkgs/development/libraries/audio/lv2/lv2-git.nix b/pkgs/development/libraries/audio/lv2/lv2-git.nix
deleted file mode 100644
index e3230a86e57..00000000000
--- a/pkgs/development/libraries/audio/lv2/lv2-git.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ 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;
-  };
-}