summary refs log tree commit diff
path: root/pkgs/tools/filesystems/curlftpfs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/filesystems/curlftpfs')
-rw-r--r--pkgs/tools/filesystems/curlftpfs/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/curlftpfs/default.nix b/pkgs/tools/filesystems/curlftpfs/default.nix
new file mode 100644
index 00000000000..6d90cae5dc5
--- /dev/null
+++ b/pkgs/tools/filesystems/curlftpfs/default.nix
@@ -0,0 +1,10 @@
+{stdenv, fetchurl, fuse, curl, pkgconfig, glib, zlib}:
+
+stdenv.mkDerivation {
+  name = "curlftpfs-0.9.1";
+  src = fetchurl {
+    url = mirror://sourceforge/curlftpfs/curlftpfs-0.9.1.tar.gz;
+    sha256 = "9f50cdf02c0dc31ef148410345b2374d294d8853d2dae11775e36b0268ad227d";
+  };
+  buildInputs = [fuse curl pkgconfig glib zlib];
+}