2019-12-14 18:51:32 +00:00
|
|
|
{ stdenv, fetchurl, lv2, pkgconfig, python3, serd, sord, sratom, wafHook }:
|
2012-07-05 21:29:45 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "lilv";
|
2020-11-03 04:48:52 +00:00
|
|
|
version = "0.24.10";
|
2012-07-05 21:29:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
2020-11-03 04:48:52 +00:00
|
|
|
sha256 = "1565zy0yz46cf2f25pi46msdnzkj6bbhml9gfigdpjnsdlyskfyi";
|
2012-07-05 21:29:45 +00:00
|
|
|
};
|
|
|
|
|
2020-03-23 02:02:29 +00:00
|
|
|
patches = [ ./lilv-pkgconfig.patch ];
|
|
|
|
|
2019-12-14 18:51:32 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig python3 wafHook ];
|
2020-03-23 02:02:29 +00:00
|
|
|
buildInputs = [ serd sord sratom ];
|
|
|
|
propagatedBuildInputs = [ lv2 ];
|
2012-07-05 21:29:45 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://drobilla.net/software/lilv";
|
2012-07-05 21:29:45 +00:00
|
|
|
description = "A C library to make the use of LV2 plugins";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2014-03-16 11:08:26 +00:00
|
|
|
platforms = platforms.linux;
|
2012-07-05 21:29:45 +00:00
|
|
|
};
|
|
|
|
}
|