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

stdenv.mkDerivation rec {
  name = "jackmeter-0.4";

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

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [ libjack2 ];

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