2019-12-14 18:51:20 +00:00
|
|
|
{ stdenv, fetchurl, gtk2, libsndfile, pkgconfig, python3, wafHook }:
|
2012-07-05 22:29:45 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "lv2";
|
2019-04-12 21:01:13 +01:00
|
|
|
version = "1.16.0";
|
2012-07-05 22:29:45 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-01-22 10:26:22 +00:00
|
|
|
url = "https://lv2plug.in/spec/${pname}-${version}.tar.bz2";
|
2019-04-12 21:01:13 +01:00
|
|
|
sha256 = "1ppippbpdpv13ibs06b0bixnazwfhiw0d0ja6hx42jnkgdyp5hyy";
|
2012-07-05 22:29:45 +01:00
|
|
|
};
|
|
|
|
|
2018-11-11 21:20:41 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig wafHook ];
|
2019-12-14 18:51:20 +00:00
|
|
|
buildInputs = [ gtk2 libsndfile python3 ];
|
2012-07-05 22:29:45 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://lv2plug.in";
|
2012-07-05 22:29:45 +01:00
|
|
|
description = "A plugin standard for audio systems";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2014-03-16 11:08:26 +00:00
|
|
|
platforms = platforms.linux;
|
2012-07-05 22:29:45 +01:00
|
|
|
};
|
|
|
|
}
|