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