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

22 lines
643 B
Nix
Raw Normal View History

2019-12-14 18:50:41 +00:00
{ stdenv, fetchurl, pkgconfig, python3, wafHook }:
stdenv.mkDerivation rec {
pname = "serd";
2020-01-20 10:23:59 +00:00
version = "0.30.2";
src = fetchurl {
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
2020-01-20 10:23:59 +00:00
sha256 = "00kjjgs5a8r72khgpya14scvl3n58wqwl5927y14z03j25q04ccx";
};
2019-12-14 18:50:41 +00:00
nativeBuildInputs = [ pkgconfig python3 wafHook ];
meta = with stdenv.lib; {
homepage = http://drobilla.net/software/serd;
description = "A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples";
license = licenses.mit;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}