summary refs log tree commit diff
path: root/pkgs/tools/misc/time
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-15 10:04:45 -0700
committerRobin Gloster <mail@glob.in>2018-03-15 18:28:14 +0100
commitf6cdd2f5f7def7c275fa81645509830ac709eb69 (patch)
treed38cb9d3a64fa7b83a044ae9434715365b5c507c /pkgs/tools/misc/time
parent408f6b2843b44109d09f3ad2787fc49c75d99776 (diff)
downloadnixpkgs-f6cdd2f5f7def7c275fa81645509830ac709eb69.tar
nixpkgs-f6cdd2f5f7def7c275fa81645509830ac709eb69.tar.gz
nixpkgs-f6cdd2f5f7def7c275fa81645509830ac709eb69.tar.bz2
nixpkgs-f6cdd2f5f7def7c275fa81645509830ac709eb69.tar.lz
nixpkgs-f6cdd2f5f7def7c275fa81645509830ac709eb69.tar.xz
nixpkgs-f6cdd2f5f7def7c275fa81645509830ac709eb69.tar.zst
nixpkgs-f6cdd2f5f7def7c275fa81645509830ac709eb69.zip
time: 1.8 -> 1.9
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/n7qc7s0q7mfaibp8rrwh62dadn4gar7f-time-1.9/bin/time --help` got 0 exit code
- ran `/nix/store/n7qc7s0q7mfaibp8rrwh62dadn4gar7f-time-1.9/bin/time -V` and found version 1.9
- ran `/nix/store/n7qc7s0q7mfaibp8rrwh62dadn4gar7f-time-1.9/bin/time --version` and found version 1.9
- ran `/nix/store/n7qc7s0q7mfaibp8rrwh62dadn4gar7f-time-1.9/bin/time --help` and found version 1.9
- found 1.9 with grep in /nix/store/n7qc7s0q7mfaibp8rrwh62dadn4gar7f-time-1.9
Diffstat (limited to 'pkgs/tools/misc/time')
-rw-r--r--pkgs/tools/misc/time/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/time/default.nix b/pkgs/tools/misc/time/default.nix
index cce7614b904..892afb4ee1c 100644
--- a/pkgs/tools/misc/time/default.nix
+++ b/pkgs/tools/misc/time/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   name = "time-${version}";
-  version = "1.8";
+  version = "1.9";
 
   src = fetchurl {
     url = "mirror://gnu/time/${name}.tar.gz";
-    sha256 = "06rfg8dn0q2r8pdq8i6brrs6rqrsgvkwbbl4kfx3a6lnal0m8bwa";
+    sha256 = "07jj7cz6lc13iqrpgn81ivqh8rkm73p4rnivwgrrshk23v4g1b7v";
   };
 
   meta = {