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