add ingen: A modular audio processing system using JACK and LV2 or LADSPA
This commit is contained in:
parent
061b489f10
commit
d21323cbf8
33
pkgs/applications/audio/ingen/default.nix
Normal file
33
pkgs/applications/audio/ingen/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ stdenv, fetchsvn, boost, ganv, glibmm, gtk, gtkmm, jackaudio, lilv
|
||||||
|
, lv2, pkgconfig, python, raul, serd, sord, sratom, suil
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ingen-svn-${rev}";
|
||||||
|
rev = "5317";
|
||||||
|
|
||||||
|
src = fetchsvn {
|
||||||
|
url = "http://svn.drobilla.net/lad/trunk/ingen";
|
||||||
|
rev = rev;
|
||||||
|
sha256 = "0zm3wbv9qsingjyr95nwin3khmnf3wq3fz2xa6p420dpcy6qnl4x";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
boost ganv glibmm gtk gtkmm jackaudio lilv lv2 pkgconfig python
|
||||||
|
raul serd sord sratom suil
|
||||||
|
];
|
||||||
|
|
||||||
|
configurePhase = "python waf configure --prefix=$out";
|
||||||
|
|
||||||
|
buildPhase = "python waf";
|
||||||
|
|
||||||
|
installPhase = "python waf install";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A modular audio processing system using JACK and LV2 or LADSPA plugins";
|
||||||
|
homepage = http://drobilla.net/software/ingen;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = [ maintainers.goibhniu ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -9444,6 +9444,8 @@ let
|
|||||||
|
|
||||||
icbm3d = callPackage ../games/icbm3d { };
|
icbm3d = callPackage ../games/icbm3d { };
|
||||||
|
|
||||||
|
ingen = callPackage ../applications/audio/ingen { };
|
||||||
|
|
||||||
instead = callPackage ../games/instead {
|
instead = callPackage ../games/instead {
|
||||||
lua = lua5;
|
lua = lua5;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user