linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / serd / default.nix
blobb122a3121e4efa9136c2be88d0e2eb4d33dfe466
1 { lib, stdenv, fetchurl, pkg-config, python3, wafHook }:
3 stdenv.mkDerivation rec {
4   pname = "serd";
5   version = "0.30.10";
7   src = fetchurl {
8     url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
9     sha256 = "sha256-r/qA3ux4kh+GM15vw/GLgK7+z0JPaldV6fL6DrBxDt8=";
10   };
12   nativeBuildInputs = [ pkg-config python3 wafHook ];
14   meta = with lib; {
15     homepage = "http://drobilla.net/software/serd";
16     description = "A lightweight C library for RDF syntax which supports reading and writing Turtle and NTriples";
17     license = licenses.mit;
18     maintainers = [ maintainers.goibhniu ];
19     platforms = platforms.unix;
20   };