Add Aumix, an audio mixer.

svn path=/nixpkgs/trunk/; revision=10627
This commit is contained in:
Ludovic Courtès 2008-02-11 21:45:52 +00:00
parent a30e268cb7
commit 06ea94a471
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{stdenv, fetchurl, gettext, ncurses
, gtkGUI ? false
, pkgconfig ? null
, gtk ? null}:
assert gtkGUI -> pkgconfig != null && gtk != null;
stdenv.mkDerivation {
name = "aumix-2.8";
src = fetchurl {
url = http://www.jpj.net/~trevor/aumix/aumix-2.8.tar.bz2;
sha256 = "636eef7f400c2f3df489c0d2fa21507e88692113561e75a40a26c52bc422d7fc";
};
buildInputs = [ gettext ncurses ]
++ (if gtkGUI then [pkgconfig gtk] else []);
meta = {
description = ''Aumix adjusts an audio mixer from X, the console,
a terminal, the command line or a script.'';
homepage = http://www.jpj.net/~trevor/aumix.html;
license = "GPL";
};
}

View File

@ -4323,6 +4323,12 @@ rec {
inherit builderDefs stringsWithDeps;
};
aumix = import ../applications/audio/aumix {
inherit fetchurl stdenv ncurses pkgconfig gettext;
inherit (gtkLibs) gtk;
gtkGUI = false;
};
batik = import ../applications/graphics/batik {
inherit fetchurl stdenv unzip;
};