ingen: unstable-2019-12-09 -> 0-unstable-2024-07-13

This commit is contained in:
t4ccer 2024-07-18 00:40:00 -06:00
parent 1ab96b3b9b
commit b32b6b837e
No known key found for this signature in database
GPG Key ID: 19E5A2D8B1E43F19

View File

@ -1,29 +1,60 @@
{ lib, stdenv, fetchgit, boost, ganv, glibmm, gtkmm2, libjack2, lilv
, lv2, pkg-config, python3, raul, serd, sord, sratom
, wafHook
, suil
{
lib,
stdenv,
fetchFromGitLab,
portaudio,
boost,
ganv,
gtkmm2,
libjack2,
lilv,
pkg-config,
python3,
raul,
sord,
sratom,
suil,
meson,
ninja,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation {
pname = "ingen";
version = "unstable-2019-12-09";
name = "${pname}-${version}";
version = "0-unstable-2024-07-13";
src = fetchgit {
url = "https://gitlab.com/drobilla/ingen.git";
rev = "e32f32a360f2bf8f017ea347b6d1e568c0beaf68";
sha256 = "0wjn2i3j7jb0bmxymg079xpk4iplb91q0xqqnvnpvyldrr7gawlb";
deepClone = true;
src = fetchFromGitLab {
owner = "drobilla";
repo = "ingen";
rev = "bbdab98ed282291b6e29a944359c360c9cca127e";
hash = "sha256-BllWeVmEkHQaZD9Ba7H0JMRlxVROJ8pkIiC2VXYiweA=";
};
nativeBuildInputs = [ pkg-config wafHook python3 python3.pkgs.wrapPython ];
nativeBuildInputs = [
meson
ninja
pkg-config
python3
python3.pkgs.wrapPython
];
buildInputs = [
boost ganv glibmm gtkmm2 libjack2 lilv lv2
python3 raul serd sord sratom suil
boost
ganv
gtkmm2
libjack2
lilv
portaudio
raul
sord
sratom
suil
];
strictDeps = true;
# lv2specgen.py is not packaged in lv2 but required to build docs
mesonFlags = [ "-Ddocs=disabled" ];
pythonPath = [
python3
python3.pkgs.rdflib
@ -31,13 +62,17 @@ stdenv.mkDerivation rec {
postInstall = ''
wrapPythonProgramsIn "$out/bin" "$out $pythonPath"
wrapProgram "$out/bin/ingen" --set INGEN_UI_PATH "$out/share/ingen/ingen_gui.ui"
'';
meta = with lib; {
meta = {
description = "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;
license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [
goibhniu
t4ccer
];
platforms = lib.platforms.linux;
};
}