2019-12-14 21:50:49 +03:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python3, serd, pcre, wafHook }:
|
2012-07-06 01:29:45 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "sord";
|
2019-11-29 18:53:56 +03:00
|
|
|
version = "0.16.4";
|
2012-07-06 01:29:45 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 15:41:18 +03:00
|
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
2019-11-29 18:53:56 +03:00
|
|
|
sha256 = "1mwh4qvp9q4vgrgg5bz9sgjhxscncrylf2b06h0q55ddwzs9hndi";
|
2012-07-06 01:29:45 +04:00
|
|
|
};
|
|
|
|
|
2019-12-14 21:50:49 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig python3 wafHook ];
|
|
|
|
buildInputs = [ serd pcre ];
|
2012-07-06 01:29:45 +04:00
|
|
|
|
|
|
|
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 ];
|
2014-03-16 15:08:26 +04:00
|
|
|
platforms = platforms.linux;
|
2012-07-06 01:29:45 +04:00
|
|
|
};
|
|
|
|
}
|