Commit a9fea437 authored by Adrian Pistol's avatar Adrian Pistol Committed by Anderson Torres
Browse files

uftpd: init at 2.15

parent 5c3d7775
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };