summary refs log tree commit diff
path: root/pkgs/tools/filesystems/s3fs
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-02-17 13:45:43 +0100
committerEelco Dolstra <edolstra@gmail.com>2017-02-17 13:46:00 +0100
commit4798196447669556d259e00849a300e13ae9aa9a (patch)
treec30e963e5010f0ebb9f578caed722e561efa6f09 /pkgs/tools/filesystems/s3fs
parent336d6cc51332965a7c9c6f9f9feefbcfe9760b18 (diff)
downloadnixpkgs-4798196447669556d259e00849a300e13ae9aa9a.tar
nixpkgs-4798196447669556d259e00849a300e13ae9aa9a.tar.gz
nixpkgs-4798196447669556d259e00849a300e13ae9aa9a.tar.bz2
nixpkgs-4798196447669556d259e00849a300e13ae9aa9a.tar.lz
nixpkgs-4798196447669556d259e00849a300e13ae9aa9a.tar.xz
nixpkgs-4798196447669556d259e00849a300e13ae9aa9a.tar.zst
nixpkgs-4798196447669556d259e00849a300e13ae9aa9a.zip
s3fs-fuse: 1.78 -> 1.80
Diffstat (limited to 'pkgs/tools/filesystems/s3fs')
-rw-r--r--pkgs/tools/filesystems/s3fs/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/filesystems/s3fs/default.nix b/pkgs/tools/filesystems/s3fs/default.nix
index edc8dd00f3e..051d2732100 100644
--- a/pkgs/tools/filesystems/s3fs/default.nix
+++ b/pkgs/tools/filesystems/s3fs/default.nix
@@ -1,11 +1,13 @@
 {stdenv, fetchurl, autoconf, automake, pkgconfig, curl, openssl, libxml2, fuse}:
 
 stdenv.mkDerivation {
-  name = "s3fs-fuse-1.79";
+  name = "s3fs-fuse-1.80";
+
   src = fetchurl {
-    url = https://github.com/s3fs-fuse/s3fs-fuse/archive/v1.79.tar.gz;
-    sha256 = "0rmzkngzq040g020pv75qqx3jy34vdxzqvxz29k6q8yfb3wpkhb1";
+    url = https://github.com/s3fs-fuse/s3fs-fuse/archive/v1.80.tar.gz;
+    sha256 = "0ddx5khlyyrxm4s8is4gqbczmrcivj11hmkk9s893r3kpp4q30yy";
   };
+
   preConfigure = "./autogen.sh";
   buildInputs = [ autoconf automake pkgconfig curl openssl libxml2 fuse ];