From 824e7af1798d182996ff97d93fecb8dec133ba5c Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 10 Nov 2010 09:16:48 +0000 Subject: Aumix 2.9.1. svn path=/nixpkgs/branches/stdenv-updates/; revision=24635 --- pkgs/applications/audio/aumix/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'pkgs/applications/audio/aumix/default.nix') diff --git a/pkgs/applications/audio/aumix/default.nix b/pkgs/applications/audio/aumix/default.nix index 9a8a756008892..52a4483aadcf6 100644 --- a/pkgs/applications/audio/aumix/default.nix +++ b/pkgs/applications/audio/aumix/default.nix @@ -5,22 +5,26 @@ assert gtkGUI -> pkgconfig != null && gtk != null; -stdenv.mkDerivation { - name = "aumix-2.8"; +stdenv.mkDerivation rec { + name = "aumix-2.9.1"; src = fetchurl { - url = http://www.jpj.net/~trevor/aumix/aumix-2.8.tar.bz2; - sha256 = "636eef7f400c2f3df489c0d2fa21507e88692113561e75a40a26c52bc422d7fc"; + url = "http://www.jpj.net/~trevor/aumix/${name}.tar.bz2"; + sha256 = "0a8fwyxnc5qdxff8sl2sfsbnvgh6pkij4yafiln0fxgg6bal7knj"; }; buildInputs = [ gettext ncurses ] ++ (if gtkGUI then [pkgconfig gtk] else []); meta = { + description = "Aumix, an audio mixer for X and the console"; longDescription = '' 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"; + license = "GPLv2+"; + + maintainers = [ stdenv.lib.maintainers.ludo ]; + platforms = stdenv.lib.platforms.linux; }; } -- cgit 1.4.1