nixpkgs/pkgs/applications/audio/jalv/default.nix

31 lines
801 B
Nix
Raw Normal View History

2014-07-28 10:07:44 +00:00
{ stdenv, fetchurl, gtk, jackaudio, lilv, lv2, pkgconfig, python
, serd, sord , sratom, suil }:
stdenv.mkDerivation rec {
name = "jalv-${version}";
2014-01-19 12:06:51 +00:00
version = "1.4.4";
src = fetchurl {
url = "http://download.drobilla.net/${name}.tar.bz2";
2014-01-19 12:06:51 +00:00
sha256 = "1iql1r52rmf87q6jkxhcxa3lpq7idzzg55ma91wphywyvh29q7lf";
};
buildInputs = [
2014-07-28 10:07:44 +00:00
gtk jackaudio lilv lv2 pkgconfig python serd sord sratom suil
];
configurePhase = "python waf configure --prefix=$out";
buildPhase = "python waf";
installPhase = "python waf install";
meta = with stdenv.lib; {
description = "A simple but fully featured LV2 host for Jack";
homepage = http://drobilla.net/software/jalv;
license = licenses.isc;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}