1 { lib, stdenv, fetchFromGitHub, pkg-config, python3, serd, pcre, wafHook }:
3 stdenv.mkDerivation rec {
5 version = "unstable-2021-01-12";
7 # Commit picked in mitigation of #109729
8 src = fetchFromGitHub {
11 rev = "d2efdb2d026216449599350b55c2c85c0d3efb89";
12 sha256 = "hHTwK+K6cj9MGO77a1IXiUZtEbXZ08cLGkYZ5eMOIVA=";
13 fetchSubmodules = true;
16 nativeBuildInputs = [ pkg-config python3 wafHook ];
17 buildInputs = [ pcre ];
18 propagatedBuildInputs = [ serd ];
21 homepage = "http://drobilla.net/software/sord";
22 description = "A lightweight C library for storing RDF data in memory";
23 license = licenses.mit;
24 maintainers = [ maintainers.goibhniu ];
25 platforms = platforms.unix;