about summary refs log tree commit diff
path: root/pkgs/by-name/gm/gmetronome/package.nix
blob: c3f1629a4c0f5bcafe3dd8f9152b4aacfc7bf19f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ lib
, stdenv
, fetchFromGitLab
, pkg-config
, autoreconfHook
, wrapGAppsHook3
, gtkmm3
, libpulseaudio
}:

stdenv.mkDerivation rec {
  pname = "gmetronome";
  version = "0.3.4";

  src = fetchFromGitLab {
    domain = "gitlab.gnome.org";
    owner = "dqpb";
    repo = "gmetronome";
    rev = version;
    hash = "sha256-fjtdM2/LMZx0dFt78Ih4BG5+NZoocPknh5INA+2e5qk=";
  };

  nativeBuildInputs = [
    pkg-config
    autoreconfHook
    wrapGAppsHook3
  ];

  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;
  };
}