1 { lib, stdenv, fetchurl, lv2, pkg-config, python3, serd, sord, sratom, wafHook
7 stdenv.mkDerivation rec {
11 outputs = [ "out" "dev" ];
14 url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
15 sha256 = "sha256-JqN3kIkMnB+DggO0f1sjIDNP6SwCpNJuu+Jmnb12kGE=";
18 patches = [ ./lilv-pkgconfig.patch ];
20 nativeBuildInputs = [ pkg-config python3 wafHook ];
21 buildInputs = [ serd sord sratom ];
22 propagatedBuildInputs = [ lv2 ];
23 dontAddWafCrossFlags = true;
30 homepage = "http://drobilla.net/software/lilv";
31 description = "A C library to make the use of LV2 plugins";
32 license = licenses.mit;
33 maintainers = [ maintainers.goibhniu ];
34 platforms = platforms.unix;