gmetronome: init at 0.3.3

This commit is contained in:
aleksana 2024-03-10 03:38:56 +08:00
parent cd7e4e32b1
commit bd02f6e2a6

View file

@ -0,0 +1,43 @@
{ lib
, stdenv
, fetchFromGitLab
, pkg-config
, autoreconfHook
, wrapGAppsHook
, gtkmm3
, libpulseaudio
}:
stdenv.mkDerivation rec {
pname = "gmetronome";
version = "0.3.3";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "dqpb";
repo = "gmetronome";
rev = version;
hash = "sha256-ilFO1HwleWIQ51Bkzck1sm1Yu3ugqkvZrpxPOYzXydM=";
};
nativeBuildInputs = [
pkg-config
autoreconfHook
wrapGAppsHook
];
buildInputs = [
gtkmm3
libpulseaudio
];
meta = with lib; {
description = "A free software metronome and tempo measurement tool";
homepage = "https://gitlab.gnome.org/dqpb/gmetronome";
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ aleksana ];
mainProgram = "gmetronome";
broken = stdenv.isDarwin;
};
}