nixpkgs/pkgs/by-name/pa/patchage/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
875 B
Nix
Raw Normal View History

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