summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-07-08 22:45:28 +0000
committerPeter Simons <simons@cryp.to>2011-07-08 22:45:28 +0000
commitf15dca4c9c711a07a4187588338686258821b2bf (patch)
tree7955ae23bca196c83161fe2d4691f34af8eeb7aa /pkgs/os-specific
parent758e85cfac62ba09893f83205e379ce83497319a (diff)
downloadnixlib-f15dca4c9c711a07a4187588338686258821b2bf.tar
nixlib-f15dca4c9c711a07a4187588338686258821b2bf.tar.gz
nixlib-f15dca4c9c711a07a4187588338686258821b2bf.tar.bz2
nixlib-f15dca4c9c711a07a4187588338686258821b2bf.tar.lz
nixlib-f15dca4c9c711a07a4187588338686258821b2bf.tar.xz
nixlib-f15dca4c9c711a07a4187588338686258821b2bf.tar.zst
nixlib-f15dca4c9c711a07a4187588338686258821b2bf.zip
htop: updated to version 0.9
svn path=/nixpkgs/trunk/; revision=27680
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/htop/default.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/htop/default.nix b/pkgs/os-specific/linux/htop/default.nix
index 6a2320993517..923f27981458 100644
--- a/pkgs/os-specific/linux/htop/default.nix
+++ b/pkgs/os-specific/linux/htop/default.nix
@@ -1,12 +1,18 @@
 {fetchurl, stdenv, ncurses}:
 
-stdenv.mkDerivation rec {
-  name = "htop-0.8.3";
+let
+  name = "htop-0.9";
+in
+stdenv.mkDerivation {
+  inherit name;
+
   src = fetchurl {
     url = "mirror://sourceforge/htop/${name}.tar.gz";
-    sha256 = "f03bac8999c57c399cbf4332831bcce905d0393d0f97f7e32a1407b48890dd9d";
+    sha256 = "4de65c38e1886bccd30ed692b30eb9bf195240680781bfe1eaf5faf84ee6fbfd";
   };
+
   buildInputs = [ncurses];
+
   meta = {
     description = "An interactive process viewer for Linux";
     homepage = "http://htop.sourceforge.net";