mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
24 lines
674 B
Nix
24 lines
674 B
Nix
{ lib, stdenv, fetchurl, openssl, pam, libxcrypt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pure-ftpd";
|
|
version = "1.0.51";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.pureftpd.org/pub/pure-ftpd/releases/pure-ftpd-${version}.tar.gz";
|
|
sha256 = "sha256-QWD2a3ZhXuojl+rE6j8KFGt5KCB7ebxMwvma17e9lRM=";
|
|
};
|
|
|
|
buildInputs = [ openssl pam libxcrypt ];
|
|
|
|
configureFlags = [ "--with-tls" ];
|
|
|
|
meta = with lib; {
|
|
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 = [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|