summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicky Elrod <ricky@elrod.me>2014-05-11 06:26:45 -0400
committerVladimír Čunát <vcunat@gmail.com>2014-05-11 13:45:25 +0200
commitc0a30a4b510d05218c0a672b93b0724e99e40f51 (patch)
tree60645608bc138647c659c2f7afbc338cf0232fca
parent68325d8eaece110e1ee8d0d01d52bc073679bcc3 (diff)
downloadnixlib-c0a30a4b510d05218c0a672b93b0724e99e40f51.tar
nixlib-c0a30a4b510d05218c0a672b93b0724e99e40f51.tar.gz
nixlib-c0a30a4b510d05218c0a672b93b0724e99e40f51.tar.bz2
nixlib-c0a30a4b510d05218c0a672b93b0724e99e40f51.tar.lz
nixlib-c0a30a4b510d05218c0a672b93b0724e99e40f51.tar.xz
nixlib-c0a30a4b510d05218c0a672b93b0724e99e40f51.tar.zst
nixlib-c0a30a4b510d05218c0a672b93b0724e99e40f51.zip
htop: Bump to 1.0.3 (close #2611)
Signed-off-by: Ricky Elrod <ricky@elrod.me>
-rw-r--r--pkgs/os-specific/linux/htop/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/htop/default.nix b/pkgs/os-specific/linux/htop/default.nix
index 613adb5f5d2f..d35b5340e9dd 100644
--- a/pkgs/os-specific/linux/htop/default.nix
+++ b/pkgs/os-specific/linux/htop/default.nix
@@ -1,11 +1,11 @@
 { fetchurl, stdenv, ncurses }:
 
 stdenv.mkDerivation rec {
-  name = "htop-1.0.2";
+  name = "htop-1.0.3";
 
   src = fetchurl {
-    url = "mirror://sourceforge/htop/${name}.tar.gz";
-    sha256 = "18fqrhvnm7h4c3939av8lpiwrwxbyw6hcly0jvq0vkjf0ixnaq7f";
+    url = "http://hisham.hm/htop/releases/1.0.3/htop-1.0.3.tar.gz";
+    sha256 = "0a8qbpsifzjwc4f45xfwm48jhm59g6q5hlib4bf7z13mgy95fp05";
   };
 
   buildInputs = [ ncurses ];
@@ -14,6 +14,6 @@ stdenv.mkDerivation rec {
     description = "An interactive process viewer for Linux";
     homepage = "http://htop.sourceforge.net";
     platforms = stdenv.lib.platforms.linux;
-    maintainers = [ stdenv.lib.maintainers.rob stdenv.lib.maintainers.simons ];
+    maintainers = with stdenv.lib.maintainers; [ rob simons relrod ];
   };
 }