2016-09-11 21:24:51 +00:00
|
|
|
{ stdenv, fetchurl, gtk2, readline, ncurses, gettext, openssl, pkgconfig }:
|
2010-07-28 15:35:01 +00:00
|
|
|
|
2008-08-06 20:39:01 +00:00
|
|
|
stdenv.mkDerivation {
|
2010-04-04 14:51:37 +00:00
|
|
|
name = "gftp-2.0.19";
|
2008-08-06 20:39:01 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-04-04 14:51:37 +00:00
|
|
|
url = http://www.gftp.org/gftp-2.0.19.tar.bz2;
|
|
|
|
sha256 = "1z8b26n23k0sjbxgrix646b06cnpndpq7cbcj0ilsvvdx5ms81jk";
|
2008-08-06 20:39:01 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gtk2 readline ncurses gettext openssl ];
|
2008-08-06 20:39:01 +00:00
|
|
|
|
|
|
|
meta = {
|
2010-07-28 15:35:01 +00:00
|
|
|
description = "GTK+-based FTP client";
|
|
|
|
homepage = http://www.gftp.org;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-08-06 20:39:01 +00:00
|
|
|
};
|
|
|
|
}
|