nixpkgs/pkgs/servers/ftp/pure-ftpd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
674 B
Nix
Raw Normal View History

2022-09-30 00:31:09 +00:00
{ lib, stdenv, fetchurl, openssl, pam, libxcrypt }:
2016-04-10 15:53:07 +00:00
stdenv.mkDerivation rec {
pname = "pure-ftpd";
2022-08-01 05:41:59 +00:00
version = "1.0.51";
2016-04-10 15:53:07 +00:00
src = fetchurl {
url = "https://download.pureftpd.org/pub/pure-ftpd/releases/pure-ftpd-${version}.tar.gz";
2022-08-01 05:41:59 +00:00
sha256 = "sha256-QWD2a3ZhXuojl+rE6j8KFGt5KCB7ebxMwvma17e9lRM=";
2016-04-10 15:53:07 +00:00
};
2022-09-30 00:31:09 +00:00
buildInputs = [ openssl pam libxcrypt ];
configureFlags = [ "--with-tls" ];
meta = with lib; {
2016-04-10 15:53:07 +00:00
description = "Free, secure, production-quality and standard-conformant FTP server";
homepage = "https://www.pureftpd.org";
license = licenses.isc; # with some parts covered by BSD3(?)
maintainers = [ ];
2021-12-05 12:32:39 +00:00
platforms = platforms.unix;
2016-04-10 15:53:07 +00:00
};
}