Merge pull request #134063 from AndersonTorres/new-cbftp

cbftp: init at 1173
This commit is contained in:
Anderson Torres 2021-08-15 13:55:13 -03:00 committed by GitHub
commit f20420e114
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,46 @@
{ lib
, stdenv
, fetchurl
, ncurses
, openssl
}:
stdenv.mkDerivation rec {
pname = "cbftp";
version = "1173";
src = fetchurl {
url = "https://cbftp.eu/${pname}-r${version}.tar.gz";
hash = "sha256-DE6fnLzWsx6Skz2LRJAaijjIqrYFB8/HPp45P5CcEc8=";
};
buildInputs = [
ncurses
openssl
];
dontConfigure = true;
installPhase = ''
runHook preInstall
install -D bin/* -t $out/bin/
install -D API README -t $out/share/doc/${pname}/
runHook postInstall
'';
meta = with lib; {
homepage = "https://cbftp.eu/";
description = " An advanced multi-purpose FTP/FXP client";
longDescription = ''
Cbftp is an advanced multi-purpose FTP/FXP client that focuses on
efficient large-scale data spreading, while also supporting most regular
FTP/FXP use cases in a modern way. It runs in a terminal and provides a
semi-graphical user interface through ncurses.
'';
license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; unix;
};
}

View file

@ -2234,6 +2234,8 @@ with pkgs;
croc = callPackage ../tools/networking/croc { }; croc = callPackage ../tools/networking/croc { };
cbftp = callPackage ../tools/networking/cbftp { };
cddl = callPackage ../development/tools/cddl { }; cddl = callPackage ../development/tools/cddl { };
cedille = callPackage ../applications/science/logic/cedille cedille = callPackage ../applications/science/logic/cedille