Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenv,
|
|
nix-update-script,
|
|
qt6,
|
|
qt6Packages,
|
|
cmake,
|
|
alsa-lib,
|
|
pandoc,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "kmidimon";
|
|
version = "1.4.1";
|
|
src = fetchFromGitHub {
|
|
owner = "pedrolcl";
|
|
repo = "kmidimon";
|
|
tag = "RELEASE_${lib.replaceStrings [ "." ] [ "_" ] finalAttrs.version}";
|
|
hash = "sha256-cITRv/k7NJvTPJYNjDXb21ctr69ThIJppmBwrmj7O74=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
qt6.wrapQtAppsHook
|
|
pandoc
|
|
];
|
|
|
|
buildInputs = [
|
|
qt6.qtbase
|
|
qt6.qttools
|
|
qt6.qt5compat
|
|
qt6Packages.drumstick
|
|
alsa-lib
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Drumstick MIDI Monitor";
|
|
longDescription = ''
|
|
Drumstick MIDI Monitor logs MIDI events coming from MIDI external ports or
|
|
applications via the ALSA sequencer, and from SMF (Standard MIDI files) or
|
|
WRK (Cakewalk/Sonar) files. It is especially useful for debugging MIDI
|
|
software or your MIDI setup.
|
|
'';
|
|
homepage = "https://github.com/pedrolcl/kmidimon";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = with lib.maintainers; [ qweered ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|