2021-03-26 10:00:37 +01:00
|
|
|
{ lib, stdenv, fetchurl, gtk2, libjack2, lilv, lv2, pkg-config, python3
|
2018-11-11 22:20:41 +01:00
|
|
|
, serd, sord , sratom, suil, wafHook }:
|
2013-03-01 01:33:08 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "jalv";
|
2021-01-19 15:46:36 +01:00
|
|
|
version = "1.6.6";
|
2013-03-01 01:33:08 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://download.drobilla.net/${pname}-${version}.tar.bz2";
|
2021-01-19 15:46:36 +01:00
|
|
|
sha256 = "sha256-ktFBeBtmQ3MgfDQ868XpuM7UYfryb9zLld8AB7BjnhY=";
|
2013-03-01 01:33:08 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config wafHook ];
|
2013-03-01 01:33:08 +01:00
|
|
|
buildInputs = [
|
2021-03-26 10:00:37 +01:00
|
|
|
gtk2 libjack2 lilv lv2 python3 serd sord sratom suil
|
2013-03-01 01:33:08 +01:00
|
|
|
];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2013-03-01 01:33:08 +01:00
|
|
|
description = "A simple but fully featured LV2 host for Jack";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://drobilla.net/software/jalv";
|
2013-03-01 01:33:08 +01:00
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
2014-03-16 12:08:26 +01:00
|
|
|
platforms = platforms.linux;
|
2013-03-01 01:33:08 +01:00
|
|
|
};
|
|
|
|
}
|