summary refs log tree commit diff
path: root/pkgs/development/libraries/serd
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/serd
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/serd')
-rw-r--r--pkgs/development/libraries/serd/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/serd/default.nix b/pkgs/development/libraries/serd/default.nix
index 3fcfb7afa86..d68503298fc 100644
--- a/pkgs/development/libraries/serd/default.nix
+++ b/pkgs/development/libraries/serd/default.nix
@@ -11,11 +11,11 @@ stdenv.mkDerivation rec {
 
   buildInputs = [ pcre 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://drobilla.net/software/serd;