1 { lib, stdenv, fetchurl, lv2, pkg-config, python3, serd, sord, wafHook }:
3 stdenv.mkDerivation rec {
8 url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
9 sha256 = "sha256-Ossysa3Forf6za3i4IGLzWxx8j+EoevBeBW7eg0tAt8=";
12 nativeBuildInputs = [ pkg-config wafHook python3 ];
13 buildInputs = [ lv2 serd sord ];
14 dontAddWafCrossFlags = true;
17 homepage = "http://drobilla.net/software/sratom";
18 description = "A library for serialising LV2 atoms to/from RDF";
19 license = licenses.mit;
20 maintainers = [ maintainers.goibhniu ];
21 platforms = platforms.unix;