Author: eelco
Date: Wed Apr  4 14:46:17 2012
New Revision: 33566
URL: https://nixos.org/websvn/nix/?rev=33566&sc=1

Log:
* Updated htop to 1.0.1.

Modified:
   nixpkgs/trunk/pkgs/lib/maintainers.nix
   nixpkgs/trunk/pkgs/os-specific/linux/htop/default.nix

Modified: nixpkgs/trunk/pkgs/lib/maintainers.nix
==============================================================================
--- nixpkgs/trunk/pkgs/lib/maintainers.nix      Wed Apr  4 14:45:24 2012        
(r33565)
+++ nixpkgs/trunk/pkgs/lib/maintainers.nix      Wed Apr  4 14:46:17 2012        
(r33566)
@@ -25,6 +25,7 @@
   piotr = "Piotr Pietraszkiewicz <[email protected]>";
   qknight = "Joachim Schiele <[email protected]>";
   raskin = "Michael Raskin <[email protected]>";
+  rob = "Rob Vermaas <[email protected]>";
   roconnor = "Russell O'Connor <[email protected]>";
   sander = "Sander van der Burg <[email protected]>";
   shlevy = "Shea Levy <[email protected]>";

Modified: nixpkgs/trunk/pkgs/os-specific/linux/htop/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/os-specific/linux/htop/default.nix       Wed Apr  4 
14:45:24 2012        (r33565)
+++ nixpkgs/trunk/pkgs/os-specific/linux/htop/default.nix       Wed Apr  4 
14:46:17 2012        (r33566)
@@ -1,21 +1,19 @@
-{fetchurl, stdenv, ncurses}:
+{ fetchurl, stdenv, ncurses }:
 
-let
-  name = "htop-1.0";
-in
-stdenv.mkDerivation {
-  inherit name;
+stdenv.mkDerivation rec {
+  name = "htop-1.0.1";
 
   src = fetchurl {
     url = "mirror://sourceforge/htop/${name}.tar.gz";
-    sha256 = 
"242879b86db4b97e1090e7cd391247268ccbe90834ff34b6e8242926c9664852";
+    sha256 = "1wh62mb102nxd5h3pnzakdf0lcyapv1yq44ndcc9wpw30az2rnq7";
   };
 
-  buildInputs = [ncurses];
+  buildInputs = [ ncurses ];
 
   meta = {
     description = "An interactive process viewer for Linux";
     homepage = "http://htop.sourceforge.net";;
     platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.rob ];
   };
 }
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to