nixpkgs/pkgs/tools/networking/ncftp/default.nix
2018-09-10 22:16:20 +02:00

41 lines
1,008 B
Nix

{ stdenv, fetchurl, ncurses, coreutils }:
stdenv.mkDerivation rec {
name = "ncftp-${version}";
version = "3.2.6";
src = fetchurl {
url = "ftp://ftp.ncftp.com/ncftp/ncftp-${version}-src.tar.xz";
sha256 = "1389657cwgw5a3kljnqmhvfh4vr2gcr71dwz1mlhf22xq23hc82z";
};
buildInputs = [ ncurses ];
enableParallelBuilding = true;
preConfigure = ''
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
'';
configureFlags = [
"--enable-ssp"
"--mandir=$(out)/share/man/"
];
meta = with stdenv.lib; {
description = "Command line FTP (File Transfer Protocol) client";
homepage = https://www.ncftp.com/ncftp/;
maintainers = with maintainers; [ bjornfor ];
platforms = platforms.unix;
license = licenses.clArtistic;
};
}