1 { lib, stdenv, fetchurl, pkg-config, python3, wafHook }:
3 stdenv.mkDerivation rec {
8 url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
9 sha256 = "sha256-r/qA3ux4kh+GM15vw/GLgK7+z0JPaldV6fL6DrBxDt8=";
12 dontAddWafCrossFlags = true;
14 nativeBuildInputs = [ pkg-config python3 wafHook ];
17 description = "A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples";
18 homepage = "http://drobilla.net/software/serd";
19 license = licenses.mit;
20 maintainers = [ maintainers.goibhniu ];
21 mainProgram = "serdi";
22 platforms = platforms.unix;