2014-01-02 16:53:57 +00:00
|
|
|
{ stdenv, fetchurl, ncurses, coreutils }:
|
2009-09-17 07:31:34 +00:00
|
|
|
|
2018-03-27 07:10:05 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "ncftp";
|
2018-03-27 07:10:05 +00:00
|
|
|
version = "3.2.6";
|
2009-09-17 07:31:34 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-01-04 08:34:38 +00:00
|
|
|
url = "ftp://ftp.ncftp.com/ncftp/ncftp-${version}-src.tar.xz";
|
|
|
|
sha256 = "1389657cwgw5a3kljnqmhvfh4vr2gcr71dwz1mlhf22xq23hc82z";
|
2009-09-17 07:31:34 +00:00
|
|
|
};
|
|
|
|
|
2013-08-21 18:22:23 +00:00
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
2018-03-27 07:10:05 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2009-09-17 07:31:34 +00:00
|
|
|
preConfigure = ''
|
2018-03-27 07:10:05 +00:00
|
|
|
find . -name '*.sh' -or -name '*.in' -or -name '*.c' -or -name configure | xargs sed -i \
|
|
|
|
-e 's@/bin/ls@${coreutils}/bin/ls@g' \
|
|
|
|
-e 's@/bin/rm@${coreutils}/bin/rm@g'
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
rmdir $out/etc
|
|
|
|
mkdir -p $out/share/doc
|
|
|
|
cp -r doc $out/share/doc/ncftp
|
2009-09-17 07:31:34 +00:00
|
|
|
'';
|
|
|
|
|
2018-03-27 07:10:05 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-ssp"
|
|
|
|
"--mandir=$(out)/share/man/"
|
|
|
|
];
|
2015-11-22 20:16:35 +00:00
|
|
|
|
2013-08-21 18:22:23 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Command line FTP (File Transfer Protocol) client";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.ncftp.com/ncftp/";
|
2018-03-27 07:10:05 +00:00
|
|
|
maintainers = with maintainers; [ bjornfor ];
|
2015-11-22 20:16:35 +00:00
|
|
|
platforms = platforms.unix;
|
2018-09-10 19:34:25 +00:00
|
|
|
license = licenses.clArtistic;
|
2009-09-17 07:31:34 +00:00
|
|
|
};
|
|
|
|
}
|