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

22 lines
644 B
Nix
Raw Normal View History

2019-12-14 19:50:41 +01:00
{ stdenv, fetchurl, pkgconfig, python3, wafHook }:
stdenv.mkDerivation rec {
pname = "serd";
2020-05-10 15:00:52 +02:00
version = "0.30.4";
src = fetchurl {
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
2020-05-10 15:00:52 +02:00
sha256 = "168rn3m32c59qbar120f83ibcnnd987ij9p053kybgl7cmm6358c";
};
2019-12-14 19:50:41 +01: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 ];
2020-07-20 11:20:00 +02:00
platforms = platforms.unix;
};
}