27 lines
771 B
Nix
27 lines
771 B
Nix
|
{ lib, stdenv, fetchurl, cmake, pandoc, pkg-config, qttools, alsa-lib, drumstick, qtbase, qtsvg }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "kmetronome";
|
||
|
version = "1.4.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://sourceforge/${pname}/${version}/${pname}-${version}.tar.bz2";
|
||
|
hash = "sha256-51uFAPR0xsY3z9rFc8SdSGu4ae/VzUmC1qC8RGdt48Y=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ cmake pandoc pkg-config qttools ];
|
||
|
|
||
|
buildInputs = [ alsa-lib drumstick qtbase qtsvg ];
|
||
|
|
||
|
dontWrapQtApps = true;
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://kmetronome.sourceforge.io/";
|
||
|
description = "ALSA MIDI metronome with Qt interface";
|
||
|
license = licenses.gpl2Plus;
|
||
|
maintainers = with maintainers; [ orivej ];
|
||
|
platforms = platforms.linux;
|
||
|
mainProgram = "kmetronome";
|
||
|
};
|
||
|
}
|