summary refs log tree commit diff
path: root/pkgs/applications/audio/jackmeter/default.nix
blob: 297bc91af4b47bf4562202c217a8cd5290d46adf (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
args: with args;

let name = "jackmeter-0.3";
in
stdenv.mkDerivation {

  inherit name;

  src = fetchurl {
    url = "http://www.aelius.com/njh/jackmeter/${name}.tar.gz";
    sha256 = "03siznnq3f0nnqyighgw9qdq1y4bfrrxs0mk6394pza3sz4b6sgp";
  };

  buildInputs = [jackaudio pkgconfig];

  meta = { 
    description = "console jack loudness meter";
    homepage = http://www.aelius.com/njh/jackmeter/;
    license = "GPLv2";
    maintainers = [args.lib.maintainers.marcweber];
    platforms = args.lib.platforms.linux;
  };
}