2019-12-14 10:50:49 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python3, serd, pcre, wafHook }:
|
2012-07-05 14:29:45 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "sord";
|
2019-11-29 07:53:56 -08:00
|
|
|
version = "0.16.4";
|
2012-07-05 14:29:45 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
2019-11-29 07:53:56 -08:00
|
|
|
sha256 = "1mwh4qvp9q4vgrgg5bz9sgjhxscncrylf2b06h0q55ddwzs9hndi";
|
2012-07-05 14:29:45 -07:00
|
|
|
};
|
|
|
|
|
2019-12-14 10:50:49 -08:00
|
|
|
nativeBuildInputs = [ pkgconfig python3 wafHook ];
|
2020-03-22 19:07:43 -07:00
|
|
|
buildInputs = [ pcre ];
|
|
|
|
propagatedBuildInputs = [ serd ];
|
2012-07-05 14:29:45 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://drobilla.net/software/sord";
|
2012-07-05 14:29:45 -07:00
|
|
|
description = "A lightweight C library for storing RDF data in memory";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2020-07-20 02:21:00 -07:00
|
|
|
platforms = platforms.unix;
|
2012-07-05 14:29:45 -07:00
|
|
|
};
|
|
|
|
}
|