adding jackmeter
svn path=/nixpkgs/trunk/; revision=17324
This commit is contained in:
parent
c01f00b3ff
commit
b2791eaa70
19
pkgs/applications/audio/jackmeter/default.nix
Normal file
19
pkgs/applications/audio/jackmeter/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "jackmeeter-0.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.aelius.com/njh/jackmeter/jackmeter-0.3.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;
|
||||
};
|
||||
}
|
@ -6936,6 +6936,10 @@ let
|
||||
inherit (gtkLibs) glib;
|
||||
};
|
||||
|
||||
jackmeter = import ../applications/audio/jackmeter {
|
||||
inherit fetchurl stdenv lib jackaudio pkgconfig;
|
||||
};
|
||||
|
||||
jedit = import ../applications/editors/jedit {
|
||||
inherit fetchurl stdenv ant;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user