summary refs log tree commit diff
path: root/pkgs/development/libraries/audio/raul/default.nix
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/raul/default.nix
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/raul/default.nix')
-rw-r--r--pkgs/development/libraries/audio/raul/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/libraries/audio/raul/default.nix b/pkgs/development/libraries/audio/raul/default.nix
index 444b3ea4e86..94102c38549 100644
--- a/pkgs/development/libraries/audio/raul/default.nix
+++ b/pkgs/development/libraries/audio/raul/default.nix
@@ -1,7 +1,7 @@
-{ stdenv, fetchgit, boost, gtk, pkgconfig, python }:
+{ stdenv, fetchgit, boost, gtk2, pkgconfig, python }:
 
 stdenv.mkDerivation rec {
-  name = "raul-git-${rev}";
+  name = "raul-unstable-${rev}";
   rev = "2016-09-20";
 
   src = fetchgit {
@@ -10,13 +10,13 @@ stdenv.mkDerivation rec {
     sha256 = "1lby508fb0n8ks6iz959sh18fc37br39d6pbapwvbcw5nckdrxwj";
   };
 
-  buildInputs = [ boost gtk pkgconfig python ];
+  buildInputs = [ boost gtk2 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; {
     description = "A C++ utility library primarily aimed at audio/musical applications";