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