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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
778 B
Nix
Raw Normal View History

2022-09-08 12:27:20 +02:00
{ lib
, stdenv
, doxygen
, fetchFromGitHub
, meson
, ninja
, pcre
, pkg-config
, python3
, serd
}:
stdenv.mkDerivation rec {
pname = "sord";
2022-09-08 12:27:20 +02:00
version = "0.16.14";
2021-01-23 17:21:32 +01:00
src = fetchFromGitHub {
owner = "drobilla";
repo = pname;
2022-09-08 12:27:20 +02:00
rev = "v${version}";
hash = "sha256-S22Szpg6iXeana5t6EpbOtRstthgrJ4Z2cBrf7a9ZBk=";
};
2022-09-08 12:27:20 +02:00
nativeBuildInputs = [
doxygen
meson
ninja
pkg-config
python3
];
buildInputs = [ pcre ];
propagatedBuildInputs = [ serd ];
2022-09-08 12:27:20 +02:00
doCheck = true;
meta = with lib; {
homepage = "http://drobilla.net/software/sord";
description = "A lightweight C library for storing RDF data in memory";
2022-09-08 12:27:20 +02:00
license = with licenses; [ bsd0 isc ];
maintainers = [ maintainers.goibhniu ];
2020-07-20 11:21:00 +02:00
platforms = platforms.unix;
};
}