2022-03-21 17:55:02 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitLab
|
|
|
|
, alsa-lib
|
|
|
|
, boost
|
|
|
|
, dbus-glib
|
|
|
|
, ganv
|
|
|
|
, glibmm
|
|
|
|
, gtkmm2
|
|
|
|
, libjack2
|
|
|
|
, pkg-config
|
|
|
|
, python3
|
|
|
|
, wafHook
|
2016-02-12 16:30:52 +01:00
|
|
|
}:
|
|
|
|
|
2022-03-21 17:55:02 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "patchage";
|
2022-08-01 06:00:15 +02:00
|
|
|
version = "1.0.6";
|
2022-03-21 17:55:02 +01:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "drobilla";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-08-01 06:00:15 +02:00
|
|
|
hash = "sha256-LzN6RyF/VT4LUVeR0904BnLuNMFZjFTDu9oDIKYG2Yo=";
|
2022-03-21 17:55:02 +01:00
|
|
|
fetchSubmodules = true;
|
2016-02-12 16:30:52 +01:00
|
|
|
};
|
|
|
|
|
2022-09-25 04:49:25 +02:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2016-02-12 16:30:52 +01:00
|
|
|
buildInputs = [
|
2022-03-21 17:55:02 +01:00
|
|
|
alsa-lib
|
|
|
|
boost
|
|
|
|
dbus-glib
|
|
|
|
ganv
|
|
|
|
glibmm
|
|
|
|
gtkmm2
|
|
|
|
libjack2
|
|
|
|
python3
|
|
|
|
wafHook
|
2016-02-12 16:30:52 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Modular patch bay for Jack and ALSA systems";
|
2022-03-21 17:55:02 +01:00
|
|
|
homepage = "https://drobilla.net/software/patchage.html";
|
2021-01-15 14:21:58 +01:00
|
|
|
license = lib.licenses.lgpl3;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [ lib.maintainers.nico202 ];
|
2016-02-12 16:30:52 +01:00
|
|
|
};
|
|
|
|
}
|