lilv and sord: remove svn versions and deploy release version

This commit is contained in:
Bart Brouns
2017-01-11 02:21:00 +01:00
parent 1b8ad96858
commit 5abcc7d22a
14 changed files with 40 additions and 126 deletions
@@ -11,11 +11,11 @@ stdenv.mkDerivation rec {
buildInputs = [ lv2 pkgconfig python serd sord sratom ];
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/lilv;
@@ -1,28 +0,0 @@
{ stdenv, fetchsvn, lv2, pkgconfig, python, serd, sord-svn, sratom }:
stdenv.mkDerivation rec {
name = "lilv-svn-${rev}";
rev = "5675";
src = fetchsvn {
url = "http://svn.drobilla.net/lad/trunk/lilv";
rev = rev;
sha256 = "1wr61sivgbh0j271ix058sncsrgh9p2rh7af081s2z9ml8szgraq";
};
buildInputs = [ lv2 pkgconfig python serd sord-svn sratom ];
configurePhase = "python waf configure --prefix=$out";
buildPhase = "python waf";
installPhase = "python waf install";
meta = with stdenv.lib; {
homepage = http://drobilla.net/software/lilv;
description = "A C library to make the use of LV2 plugins";
license = licenses.mit;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}