nixpkgs/pkgs/development/libraries/sord/default.nix

24 lines
679 B
Nix
Raw Normal View History

2019-12-14 10:50:49 -08:00
{ stdenv, fetchurl, pkgconfig, python3, serd, pcre, wafHook }:
stdenv.mkDerivation rec {
pname = "sord";
2019-11-29 07:53:56 -08:00
version = "0.16.4";
src = fetchurl {
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
2019-11-29 07:53:56 -08:00
sha256 = "1mwh4qvp9q4vgrgg5bz9sgjhxscncrylf2b06h0q55ddwzs9hndi";
};
2019-12-14 10:50:49 -08:00
nativeBuildInputs = [ pkgconfig python3 wafHook ];
buildInputs = [ pcre ];
propagatedBuildInputs = [ serd ];
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 ];
2020-07-20 02:21:00 -07:00
platforms = platforms.unix;
};
}