From 4c7adddcb7ae435cdecceeb627dca22ae581ca09 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Wed, 11 Feb 2015 13:23:58 +0000 Subject: s3fs: Add package --- pkgs/tools/filesystems/s3fs/default.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pkgs/tools/filesystems/s3fs/default.nix (limited to 'pkgs/tools/filesystems/s3fs') diff --git a/pkgs/tools/filesystems/s3fs/default.nix b/pkgs/tools/filesystems/s3fs/default.nix new file mode 100644 index 000000000000..4c509444b74c --- /dev/null +++ b/pkgs/tools/filesystems/s3fs/default.nix @@ -0,0 +1,16 @@ +{stdenv, fetchurl, autoconf, automake, pkgconfig, curl, openssl, libxml2, fuse}: + +stdenv.mkDerivation { + name = "sshfs-fuse-1.78"; + src = fetchurl { + url = https://github.com/s3fs-fuse/s3fs-fuse/archive/v1.78.tar.gz; + sha256 = "1xcp0bqa4a2ynjn5phb1pj70wm322czhqp4qcb27d5jd545b1h1n"; + }; + preConfigure = "./autogen.sh"; + buildInputs = [ autoconf automake pkgconfig curl openssl libxml2 fuse ]; + + meta = { + description = "Mount an S3 bucket as filesystem through FUSE"; + license = "GPLv2"; + }; +} -- cgit 1.4.1