s3fs-fuse: 1.78 -> 1.80

This commit is contained in:
Eelco Dolstra 2017-02-17 13:45:43 +01:00
parent 336d6cc513
commit 4798196447
No known key found for this signature in database
GPG Key ID: 8170B4726D7198DE

View File

@ -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 ];