mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
pure-ftpd: init at 1.0.42
This commit is contained in:
parent
c1178f171c
commit
7e7a614aaa
18
pkgs/servers/ftp/pure-ftpd/default.nix
Normal file
18
pkgs/servers/ftp/pure-ftpd/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pure-ftpd-1.0.42";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.pureftpd.org/pub/pure-ftpd/releases/${name}.tar.gz";
|
||||
sha256 = "1yg7v1l3ng7c08nhh804k28y1f8ccmg0rq1a9l2sg45ib273mrvv";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A free, secure, production-quality and standard-conformant FTP server";
|
||||
homepage = https://www.pureftpd.org;
|
||||
license = licenses.bsd;
|
||||
maintainers = [ maintainers.lethalman ];
|
||||
};
|
||||
|
||||
}
|
@ -9877,6 +9877,8 @@ in
|
||||
|
||||
pumpio = callPackage ../servers/web-apps/pump.io { };
|
||||
|
||||
pure-ftpd = callPackage ../servers/ftp/pure-ftpd { };
|
||||
|
||||
pyIRCt = callPackage ../servers/xmpp/pyIRCt {};
|
||||
|
||||
pyMAILt = callPackage ../servers/xmpp/pyMAILt {};
|
||||
|
Loading…
Reference in New Issue
Block a user