about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/s3fs
diff options
context:
space:
mode:
authorJaka Hudoklin <jakahudoklin@gmail.com>2015-08-19 23:18:24 +0200
committerJaka Hudoklin <jakahudoklin@gmail.com>2015-08-19 23:50:27 +0200
commit4ecf102ebff109b6f8ac060e43c9bfad34b3d682 (patch)
tree2f3fc01750ea04699976c04e4c301dad89ad3ca1 /pkgs/tools/filesystems/s3fs
parent24a626020aa941677b6297ee5343f005333fb084 (diff)
downloadnixlib-4ecf102ebff109b6f8ac060e43c9bfad34b3d682.tar
nixlib-4ecf102ebff109b6f8ac060e43c9bfad34b3d682.tar.gz
nixlib-4ecf102ebff109b6f8ac060e43c9bfad34b3d682.tar.bz2
nixlib-4ecf102ebff109b6f8ac060e43c9bfad34b3d682.tar.lz
nixlib-4ecf102ebff109b6f8ac060e43c9bfad34b3d682.tar.xz
nixlib-4ecf102ebff109b6f8ac060e43c9bfad34b3d682.tar.zst
nixlib-4ecf102ebff109b6f8ac060e43c9bfad34b3d682.zip
s3fs: 1.78 -> 1.79
Diffstat (limited to 'pkgs/tools/filesystems/s3fs')
-rw-r--r--pkgs/tools/filesystems/s3fs/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/tools/filesystems/s3fs/default.nix b/pkgs/tools/filesystems/s3fs/default.nix
index 7e880ffeeb94..4c40d5e49835 100644
--- a/pkgs/tools/filesystems/s3fs/default.nix
+++ b/pkgs/tools/filesystems/s3fs/default.nix
@@ -1,14 +1,18 @@
 {stdenv, fetchurl, autoconf, automake, pkgconfig, curl, openssl, libxml2, fuse}:
 
 stdenv.mkDerivation {
-  name = "s3fs-fuse-1.78";
+  name = "s3fs-fuse-1.79";
   src = fetchurl {
-    url = https://github.com/s3fs-fuse/s3fs-fuse/archive/v1.78.tar.gz;
-    sha256 = "1xcp0bqa4a2ynjn5phb1pj70wm322czhqp4qcb27d5jd545b1h1n";
+    url = https://github.com/s3fs-fuse/s3fs-fuse/archive/v1.79.tar.gz;
+    sha256 = "0rmzkngzq040g020pv75qqx3jy34vdxzqvxz29k6q8yfb3wpkhb1";
   };
   preConfigure = "./autogen.sh";
   buildInputs = [ autoconf automake pkgconfig curl openssl libxml2 fuse ];
-  
+
+  postInstall = ''
+    ln -s $out/bin/s3fs $out/bin/mount.s3fs
+  '';
+
   meta = with stdenv.lib; {
     description = "Mount an S3 bucket as filesystem through FUSE";
     license = licenses.gpl2;