uftpd: init at 2.15

This commit is contained in:
Adrian Pistol 2023-09-02 11:38:26 +02:00 committed by Anderson Torres
parent 5c3d7775dd
commit a9fea43703
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, libuev, libite }:
stdenv.mkDerivation rec {
pname = "uftpd";
version = "2.15";
src = fetchFromGitHub {
owner = "troglobit";
repo = "uftpd";
rev = "v${version}";
hash = "sha256-+y1eRPUgYf5laRFIDD1XOEfonPP8QMJNCSkmHlXIjdY=";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ libuev libite ];
meta = with lib; {
description = "FTP/TFTP server for Linux that just works";
homepage = "https://troglobit.com/projects/uftpd/";
license = licenses.isc;
platforms = platforms.unix;
maintainers = with maintainers; [ vifino ];
};
}

View File

@ -14192,6 +14192,8 @@ with pkgs;
uftrace = callPackage ../development/tools/uftrace { };
uftpd = callPackage ../servers/ftp/uftpd {};
uget = callPackage ../tools/networking/uget { };
uget-integrator = callPackage ../tools/networking/uget-integrator { };