summary refs log tree commit diff
path: root/pkgs/tools/filesystems/s3fs
diff options
context:
space:
mode:
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 ];