summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorArseniy Seroka <jagajaga@users.noreply.github.com>2015-12-14 23:46:40 +0300
committerArseniy Seroka <jagajaga@users.noreply.github.com>2015-12-14 23:46:40 +0300
commitecc0c30daf026f8a3f86a53dadbd9ddcfdd5deab (patch)
treed0f1b2254df6f11662ab6c36dec82a7097c9861e /pkgs/tools
parent60df14b4b1ae40b726b68e91c5a45f823d4a7e0e (diff)
parenta900bf6e158f930917cdcab51ca7cbae6b2295c8 (diff)
downloadnixlib-ecc0c30daf026f8a3f86a53dadbd9ddcfdd5deab.tar
nixlib-ecc0c30daf026f8a3f86a53dadbd9ddcfdd5deab.tar.gz
nixlib-ecc0c30daf026f8a3f86a53dadbd9ddcfdd5deab.tar.bz2
nixlib-ecc0c30daf026f8a3f86a53dadbd9ddcfdd5deab.tar.lz
nixlib-ecc0c30daf026f8a3f86a53dadbd9ddcfdd5deab.tar.xz
nixlib-ecc0c30daf026f8a3f86a53dadbd9ddcfdd5deab.tar.zst
nixlib-ecc0c30daf026f8a3f86a53dadbd9ddcfdd5deab.zip
Merge pull request #11664 from garrison/vmtouch-upgrade
vmtouch -> 1.0.2
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/vmtouch/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/misc/vmtouch/default.nix b/pkgs/tools/misc/vmtouch/default.nix
index 767a61c2bb50..34328b339fc7 100644
--- a/pkgs/tools/misc/vmtouch/default.nix
+++ b/pkgs/tools/misc/vmtouch/default.nix
@@ -2,14 +2,14 @@
 
 stdenv.mkDerivation rec {
   pname = "vmtouch";
-  version = "git-20150310";
-  name = "${pname}-${version}";
+  version = "1.0.2";
+  name = "${pname}-git-${version}";
 
   src = fetchFromGitHub {
     owner = "hoytech";
     repo = "vmtouch";
-    rev = "4e1b106e59942678c1e6e490e2c7ca7df50eb7a3";
-    sha256 = "1m37gvlypyfizd33mfyfha4hhwiyfzsj8gb2h5im6wzis4j15d0y";
+    rev = "vmtouch-${version}";
+    sha256 = "0m4s1am1r3qp8si3rnc8j2qc7sbf1k3gxvxr6fnpbf8fcfhh6cay";
   };
 
   buildInputs = [perl];
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
   meta = {
     description = "Portable file system cache diagnostics and control";
     longDescription = "vmtouch is a tool for learning about and controlling the file system cache of unix and unix-like systems.";
-    homepage = "http://hoytech.com/vmtouch/vmtouch.html";
+    homepage = "http://hoytech.com/vmtouch/";
     license = stdenv.lib.licenses.bsd3;
     maintainers = [ stdenv.lib.maintainers.garrison ];
     platforms = stdenv.lib.platforms.all;