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

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

27 lines
771 B
Nix
Raw Normal View History

2024-03-22 14:51:33 +00:00
{ lib, stdenv, fetchurl, cmake, pandoc, pkg-config, qttools, alsa-lib, drumstick, qtbase, qtsvg }:
2020-08-08 03:34:33 +00:00
stdenv.mkDerivation rec {
pname = "kmetronome";
2024-03-22 14:51:33 +00:00
version = "1.4.0";
2020-08-08 03:34:33 +00:00
src = fetchurl {
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}.tar.bz2";
2024-03-22 14:51:33 +00:00
hash = "sha256-51uFAPR0xsY3z9rFc8SdSGu4ae/VzUmC1qC8RGdt48Y=";
2020-08-08 03:34:33 +00:00
};
2024-03-22 14:51:33 +00:00
nativeBuildInputs = [ cmake pandoc pkg-config qttools ];
2020-08-08 03:34:33 +00:00
buildInputs = [ alsa-lib drumstick qtbase qtsvg ];
2020-08-08 03:34:33 +00:00
dontWrapQtApps = true;
meta = with lib; {
2020-08-08 03:34:33 +00:00
homepage = "https://kmetronome.sourceforge.io/";
description = "ALSA MIDI metronome with Qt interface";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
2024-02-11 02:19:15 +00:00
mainProgram = "kmetronome";
2020-08-08 03:34:33 +00:00
};
}