Aumix 2.9.1.
svn path=/nixpkgs/branches/stdenv-updates/; revision=24635
This commit is contained in:
parent
7f5431f095
commit
824e7af179
@ -5,22 +5,26 @@
|
|||||||
|
|
||||||
assert gtkGUI -> pkgconfig != null && gtk != null;
|
assert gtkGUI -> pkgconfig != null && gtk != null;
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "aumix-2.8";
|
name = "aumix-2.9.1";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://www.jpj.net/~trevor/aumix/aumix-2.8.tar.bz2;
|
url = "http://www.jpj.net/~trevor/aumix/${name}.tar.bz2";
|
||||||
sha256 = "636eef7f400c2f3df489c0d2fa21507e88692113561e75a40a26c52bc422d7fc";
|
sha256 = "0a8fwyxnc5qdxff8sl2sfsbnvgh6pkij4yafiln0fxgg6bal7knj";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gettext ncurses ]
|
buildInputs = [ gettext ncurses ]
|
||||||
++ (if gtkGUI then [pkgconfig gtk] else []);
|
++ (if gtkGUI then [pkgconfig gtk] else []);
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
description = "Aumix, an audio mixer for X and the console";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Aumix adjusts an audio mixer from X, the console, a terminal,
|
Aumix adjusts an audio mixer from X, the console, a terminal,
|
||||||
the command line or a script.
|
the command line or a script.
|
||||||
'';
|
'';
|
||||||
homepage = http://www.jpj.net/~trevor/aumix.html;
|
homepage = http://www.jpj.net/~trevor/aumix.html;
|
||||||
license = "GPL";
|
license = "GPLv2+";
|
||||||
|
|
||||||
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user