From 93b830f111840c87b0bd7b8e4a9d17d34f3aab03 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 18 Aug 2015 12:18:19 +0200 Subject: [PATCH] htop: use a version number that corresponds to the output from "git describe --tags" This approach avoids potential problems with "nix-env --update" when we'll go back to a release version. Kindly suggested by @vcunat in https://github.com/NixOS/nixpkgs/pull/9307#issuecomment-132112840. --- pkgs/os-specific/linux/htop/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/htop/default.nix b/pkgs/os-specific/linux/htop/default.nix index 8e7df5bb8a5..6c83783bc6a 100644 --- a/pkgs/os-specific/linux/htop/default.nix +++ b/pkgs/os-specific/linux/htop/default.nix @@ -1,7 +1,7 @@ { fetchFromGitHub, stdenv, autoreconfHook, ncurses }: stdenv.mkDerivation rec { - name = "htop-2015-08-12"; + name = "htop-1.0.3-186-gf2c053a"; src = fetchFromGitHub { sha256 = "017aihyg0bjli1hlvcqgqxpwzy2ayvwv6byhqd97n9sqfkmi9i0p";