summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2015-02-21 17:36:07 +0000
committerzimbatm <zimbatm@zimbatm.com>2015-02-21 17:47:39 +0000
commitdb50ddd9ea3cd9afff07e69abfca2345d07eda26 (patch)
treec1f22ff6380c70c9f609f03ed090a81fdfee6e61 /pkgs/tools/misc
parent7bf20213497193695f16f3222a4409e72be52b54 (diff)
downloadnixpkgs-db50ddd9ea3cd9afff07e69abfca2345d07eda26.tar
nixpkgs-db50ddd9ea3cd9afff07e69abfca2345d07eda26.tar.gz
nixpkgs-db50ddd9ea3cd9afff07e69abfca2345d07eda26.tar.bz2
nixpkgs-db50ddd9ea3cd9afff07e69abfca2345d07eda26.tar.lz
nixpkgs-db50ddd9ea3cd9afff07e69abfca2345d07eda26.tar.xz
nixpkgs-db50ddd9ea3cd9afff07e69abfca2345d07eda26.tar.zst
nixpkgs-db50ddd9ea3cd9afff07e69abfca2345d07eda26.zip
direnv: update to v2.6.0
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/direnv/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/direnv/default.nix b/pkgs/tools/misc/direnv/default.nix
index 739908e3699..f21b879d5e5 100644
--- a/pkgs/tools/misc/direnv/default.nix
+++ b/pkgs/tools/misc/direnv/default.nix
@@ -1,14 +1,14 @@
 { fetchurl, stdenv, go }:
 
 let
-  version = "2.4.0";
+  version = "2.6.0";
 in
 stdenv.mkDerivation {
   name = "direnv-${version}";
   src = fetchurl {
     url = "http://github.com/zimbatm/direnv/archive/v${version}.tar.gz";
     name = "direnv-${version}.tar.gz";
-    sha256 = "aab8028cc1d68461dd1f6c3c9d000eef10273c52399fe5d1dd917f2f4a1a349a";
+    sha256 = "b85aac4d6a4ddf2daf193aabb3b2faf89e56507d33d763ab74cc7eb0b524ac03";
   };
 
   buildInputs = [ go ];