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