depot/third_party/nixpkgs/pkgs/development/libraries/sord/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

23 lines
679 B
Nix

{ stdenv, fetchurl, pkgconfig, python3, serd, pcre, wafHook }:
stdenv.mkDerivation rec {
pname = "sord";
version = "0.16.4";
src = fetchurl {
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
sha256 = "1mwh4qvp9q4vgrgg5bz9sgjhxscncrylf2b06h0q55ddwzs9hndi";
};
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 ];
platforms = platforms.unix;
};
}