adding jackmeter

svn path=/nixpkgs/trunk/; revision=17324
This commit is contained in:
Marc Weber 2009-09-21 09:58:33 +00:00
parent c01f00b3ff
commit b2791eaa70
2 changed files with 23 additions and 0 deletions

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

View file

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