2007-10-25 15:45:00 +01:00
|
|
|
{stdenv, fetchurl, fuse, curl, pkgconfig, glib, zlib}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-04-09 16:40:12 +01:00
|
|
|
name = "curlftpfs-0.9.2";
|
2007-10-25 15:45:00 +01:00
|
|
|
src = fetchurl {
|
2010-04-09 16:40:12 +01:00
|
|
|
url = mirror://sourceforge/curlftpfs/curlftpfs-0.9.2.tar.gz;
|
|
|
|
sha256 = "0n397hmv21jsr1j7zx3m21i7ryscdhkdsyqpvvns12q7qwwlgd2f";
|
2007-10-25 15:45:00 +01:00
|
|
|
};
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [fuse curl glib zlib];
|
2016-08-02 17:06:29 +01:00
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails, doesn't work well too, btw
|
|
|
|
|
2018-09-07 21:17:34 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Filesystem for accessing FTP hosts based on FUSE and libcurl";
|
|
|
|
homepage = http://curlftpfs.sourceforge.net;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
2016-08-02 17:06:29 +01:00
|
|
|
};
|
2007-10-25 15:45:00 +01:00
|
|
|
}
|