28 lines
722 B
Nix
28 lines
722 B
Nix
{ stdenv, fetchurl, pcre, pkgconfig, python }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "serd-${version}";
|
|
version = "0.18.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.drobilla.net/${name}.tar.bz2";
|
|
sha256 = "1hgajhm4iar4n2kh71pv6yr0yhipj28kds9y5mbig8izqc188gcf";
|
|
};
|
|
|
|
buildInputs = [ pcre pkgconfig python ];
|
|
|
|
configurePhase = "python waf configure --prefix=$out";
|
|
|
|
buildPhase = "python waf";
|
|
|
|
installPhase = "python waf install";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://drobilla.net/software/serd;
|
|
description = "A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
};
|
|
}
|