mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
fd9a8608ab
sord: 0.16.2 -> 0.16.4
23 lines
647 B
Nix
23 lines
647 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 = [ serd pcre ];
|
|
|
|
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.linux;
|
|
};
|
|
}
|