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

44 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchgit, boost, ganv, glibmm, gtkmm2, libjack2, lilv
2021-03-26 08:50:39 +00:00
, lv2, makeWrapper, pkg-config, python3, raul, serd, sord, sratom
, wafHook
, suil
}:
stdenv.mkDerivation rec {
pname = "ingen";
version = "unstable-2019-12-09";
name = "${pname}-${version}";
2016-11-07 13:20:13 +00:00
src = fetchgit {
url = "https://gitlab.com/drobilla/ingen.git";
rev = "e32f32a360f2bf8f017ea347b6d1e568c0beaf68";
sha256 = "0wjn2i3j7jb0bmxymg079xpk4iplb91q0xqqnvnpvyldrr7gawlb";
deepClone = true;
};
2021-03-26 08:50:39 +00:00
nativeBuildInputs = [ pkg-config wafHook python3 python3.pkgs.wrapPython ];
buildInputs = [
2021-03-26 08:50:39 +00:00
boost ganv glibmm gtkmm2 libjack2 lilv lv2
python3 raul serd sord sratom suil
];
2021-03-26 08:50:39 +00:00
strictDeps = true;
2021-03-26 08:50:39 +00:00
pythonPath = [
python3
python3.pkgs.rdflib
];
postInstall = ''
2021-03-26 08:50:39 +00:00
wrapPythonProgramsIn "$out/bin" "$out $pythonPath"
'';
meta = with lib; {
description = "A modular audio processing system using JACK and LV2 or LADSPA plugins";
homepage = "http://drobilla.net/software/ingen";
license = licenses.agpl3Plus;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
};
}