From fedcbfce68bcf540f5211ef49637d05f85d0a7f3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 7 Mar 2016 23:15:15 +0100 Subject: [PATCH] htop: 2.0.0 -> 2.0.1 --- pkgs/os-specific/linux/htop/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/htop/default.nix b/pkgs/os-specific/linux/htop/default.nix index b722815f2954..de18378a32bb 100644 --- a/pkgs/os-specific/linux/htop/default.nix +++ b/pkgs/os-specific/linux/htop/default.nix @@ -1,11 +1,12 @@ { fetchFromGitHub, stdenv, autoreconfHook, ncurses }: stdenv.mkDerivation rec { - name = "htop-2.0.0"; + name = "htop-${version}"; + version = "2.0.1"; src = fetchFromGitHub { - sha256 = "1z8rzf3ndswk3090qypl0bqzq9f32w0ik2k5x4zd7jg4hkx66k7z"; - rev = "2.0.0"; + sha256 = "0llj8ixgyjjq9vymsiysv7qnlc7f04jzm6lc9wm7nhcnymn7jg8z"; + rev = version; repo = "htop"; owner = "hishamhm"; };