lilv and sord: remove svn versions and deploy release version

This commit is contained in:
Bart Brouns
2016-11-01 02:00:07 +01:00
parent 1b8ad96858
commit 5abcc7d22a
14 changed files with 40 additions and 126 deletions

View File

@@ -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;