lilv and sord: remove svn versions and deploy release version
This commit is contained in:
@@ -11,11 +11,11 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ pkgconfig python serd ];
|
||||
|
||||
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/sord;
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
{ stdenv, fetchsvn, pkgconfig, python, serd }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sord-svn-${rev}";
|
||||
rev = "327";
|
||||
|
||||
src = fetchsvn {
|
||||
url = "http://svn.drobilla.net/sord/trunk";
|
||||
rev = rev;
|
||||
sha256 = "09lf6xmwfg8kbmz1b7d3hrpz0qqr8prdjqrp91aw70cgclx2pwc4";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig python serd ];
|
||||
|
||||
configurePhase = "python waf configure --prefix=$out";
|
||||
|
||||
buildPhase = "python waf";
|
||||
|
||||
installPhase = "python waf install";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://drobilla.net/software/sord;
|
||||
description = "A lightweight C library for storing RDF data in memory";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.goibhniu ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user