2018-11-11 21:20:41 +00:00
|
|
|
{ stdenv, fetchurl, lv2, pkgconfig, python, serd, sord, sratom, wafHook }:
|
2012-07-05 21:29:45 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lilv-${version}";
|
2018-08-22 10:22:06 +00:00
|
|
|
version = "0.24.4";
|
2012-07-05 21:29:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://download.drobilla.net/${name}.tar.bz2";
|
2018-08-22 10:22:06 +00:00
|
|
|
sha256 = "0f24cd7wkk5l969857g2ydz2kjjrkvvddg1g87xzzs78lsvq8fy3";
|
2012-07-05 21:29:45 +00:00
|
|
|
};
|
|
|
|
|
2018-11-11 21:20:41 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig wafHook ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ lv2 python serd sord sratom ];
|
2012-07-05 21:29:45 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://drobilla.net/software/lilv;
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|