2021-03-26 12:00:37 +03:00
|
|
|
{ lib, stdenv, fetchurl, gtk2, libjack2, lilv, lv2, pkg-config, python3
|
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";
|
2021-01-19 17:46:36 +03:00
|
|
|
version = "1.6.6";
|
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";
|
2021-01-19 17:46:36 +03:00
|
|
|
sha256 = "sha256-ktFBeBtmQ3MgfDQ868XpuM7UYfryb9zLld8AB7BjnhY=";
|
2013-03-01 04:33:08 +04:00
|
|
|
};
|
|
|
|
|
2021-01-19 09:50:56 +03:00
|
|
|
nativeBuildInputs = [ pkg-config wafHook ];
|
2013-03-01 04:33:08 +04:00
|
|
|
buildInputs = [
|
2021-03-26 12:00:37 +03:00
|
|
|
gtk2 libjack2 lilv lv2 python3 serd sord sratom suil
|
2013-03-01 04:33:08 +04:00
|
|
|
];
|
|
|
|
|
2021-01-11 10:54:33 +03:00
|
|
|
meta = with lib; {
|
2013-03-01 04:33:08 +04:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|