linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / sord / default.nix
blob820c577908ab9febe7c77027493637d231c057bc
1 { lib, stdenv, fetchFromGitHub, pkg-config, python3, serd, pcre, wafHook }:
3 stdenv.mkDerivation rec {
4   pname = "sord";
5   version = "unstable-2021-01-12";
7   # Commit picked in mitigation of #109729
8   src = fetchFromGitHub {
9     owner = "drobilla";
10     repo = pname;
11     rev = "d2efdb2d026216449599350b55c2c85c0d3efb89";
12     sha256 = "hHTwK+K6cj9MGO77a1IXiUZtEbXZ08cLGkYZ5eMOIVA=";
13     fetchSubmodules = true;
14   };
16   nativeBuildInputs = [ pkg-config python3 wafHook ];
17   buildInputs = [ pcre ];
18   propagatedBuildInputs = [ serd ];
20   meta = with lib; {
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;
26   };