2020-01-20 13:15:40 +03:00
|
|
|
{ stdenv, fetchurl, gtk3, libjack2, lilv, lv2, pkgconfig, python
|
2018-11-12 00:20:41 +03:00
|
|
|
, serd, sord , sratom, suil, wafHook }:
|
2013-03-01 04:33:08 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "jalv";
|
2020-01-20 13:15:40 +03:00
|
|
|
version = "1.6.4";
|
2013-03-01 04:33:08 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 15:41:18 +03:00
|
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
2020-01-20 13:15:40 +03:00
|
|
|
sha256 = "1wwfn7yzbs37s2rdlfjgks63svd5g14yyzd2gdl7h0z12qncwsy2";
|
2013-03-01 04:33:08 +04:00
|
|
|
};
|
|
|
|
|
2018-11-12 00:20:41 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig wafHook ];
|
2013-03-01 04:33:08 +04:00
|
|
|
buildInputs = [
|
2020-01-20 13:15:40 +03:00
|
|
|
gtk3 libjack2 lilv lv2 python serd sord sratom suil
|
2013-03-01 04:33:08 +04:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A simple but fully featured LV2 host for Jack";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://drobilla.net/software/jalv";
|
2013-03-01 04:33:08 +04:00
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2014-03-16 15:08:26 +04:00
|
|
|
platforms = platforms.linux;
|
2013-03-01 04:33:08 +04:00
|
|
|
};
|
|
|
|
}
|