Author: ludo
Date: Wed Nov 10 09:16:48 2010
New Revision: 24635
URL: https://svn.nixos.org/websvn/nix/?rev=24635&sc=1

Log:
Aumix 2.9.1.

Modified:
   nixpkgs/branches/stdenv-updates/pkgs/applications/audio/aumix/default.nix

Modified: 
nixpkgs/branches/stdenv-updates/pkgs/applications/audio/aumix/default.nix
==============================================================================
--- nixpkgs/branches/stdenv-updates/pkgs/applications/audio/aumix/default.nix   
Wed Nov 10 07:45:41 2010        (r24634)
+++ nixpkgs/branches/stdenv-updates/pkgs/applications/audio/aumix/default.nix   
Wed Nov 10 09:16:48 2010        (r24635)
@@ -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;
   };
 }
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to