summary refs log tree commit diff
path: root/pkgs/applications/audio/jackmeter/default.nix
blob: 95fc88a86964d7ac6cd9657f5a9ab1c453f39341 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv, fetchurl, libjack2, pkg-config }:

stdenv.mkDerivation rec {
  pname = "jackmeter";
  version = "0.4";

  src = fetchurl {
    url = "https://www.aelius.com/njh/${pname}/${pname}-${version}.tar.gz";
    sha256 = "1cnvgx3jv0yvxlqy0l9k285zgvazmh5k8m4l7lxckjfm5bn6hm1r";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ libjack2 ];

  meta = {
    description = "Console jack loudness meter";
    homepage = "https://www.aelius.com/njh/jackmeter/";
    license = lib.licenses.gpl2;
    maintainers = [ lib.maintainers.marcweber ];
    platforms = lib.platforms.linux;
  };
}