2018-11-11 13:20:41 -08:00
|
|
|
{ stdenv, fetchurl, gtk2, libsndfile, pkgconfig, python, wafHook }:
|
2012-07-05 14:29:45 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "lv2-${version}";
|
2019-04-12 13:01:13 -07:00
|
|
|
version = "1.16.0";
|
2012-07-05 14:29:45 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://lv2plug.in/spec/${name}.tar.bz2";
|
2019-04-12 13:01:13 -07:00
|
|
|
sha256 = "1ppippbpdpv13ibs06b0bixnazwfhiw0d0ja6hx42jnkgdyp5hyy";
|
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 = [ gtk2 libsndfile python ];
|
2012-07-05 14:29:45 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://lv2plug.in;
|
|
|
|
description = "A plugin standard for audio systems";
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|