summary refs log tree commit diff
path: root/pkgs/applications/audio/aumix/default.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-11-10 09:16:48 +0000
committerLudovic Courtès <ludo@gnu.org>2010-11-10 09:16:48 +0000
commit824e7af1798d182996ff97d93fecb8dec133ba5c (patch)
treeb68e28eb7c68f08aebad986a8063b6a98538b516 /pkgs/applications/audio/aumix/default.nix
parent7f5431f09588ed2c0e4c766c0d23d3cbeb3bf06d (diff)
downloadnixpkgs-824e7af1798d182996ff97d93fecb8dec133ba5c.tar
nixpkgs-824e7af1798d182996ff97d93fecb8dec133ba5c.tar.gz
nixpkgs-824e7af1798d182996ff97d93fecb8dec133ba5c.tar.bz2
nixpkgs-824e7af1798d182996ff97d93fecb8dec133ba5c.tar.lz
nixpkgs-824e7af1798d182996ff97d93fecb8dec133ba5c.tar.xz
nixpkgs-824e7af1798d182996ff97d93fecb8dec133ba5c.tar.zst
nixpkgs-824e7af1798d182996ff97d93fecb8dec133ba5c.zip
Aumix 2.9.1.
svn path=/nixpkgs/branches/stdenv-updates/; revision=24635
Diffstat (limited to 'pkgs/applications/audio/aumix/default.nix')
-rw-r--r--pkgs/applications/audio/aumix/default.nix14
1 files changed, 9 insertions, 5 deletions
diff --git a/pkgs/applications/audio/aumix/default.nix b/pkgs/applications/audio/aumix/default.nix
index 9a8a7560088..52a4483aadc 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;
   };
 }