mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01: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/'
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, libcap, libseccomp, openssl, pam, libxcrypt, nixosTests }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vsftpd";
|
|
version = "3.0.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://security.appspot.com/downloads/vsftpd-${version}.tar.gz";
|
|
sha256 = "sha256-JrYCrkVLC6bZnvRKCba54N+n9nIoEGc23x8njHC8kdM=";
|
|
};
|
|
|
|
buildInputs = [ libcap openssl libseccomp pam libxcrypt ];
|
|
|
|
patches = [ ./CVE-2015-1419.patch ];
|
|
|
|
postPatch = ''
|
|
sed -i "/VSF_BUILD_SSL/s/^#undef/#define/" builddefs.h
|
|
|
|
substituteInPlace Makefile \
|
|
--replace -dirafter "" \
|
|
--replace /usr $out \
|
|
--replace /etc $out/etc \
|
|
--replace "-Werror" ""
|
|
|
|
|
|
mkdir -p $out/sbin $out/man/man{5,8}
|
|
'';
|
|
|
|
makeFlags = [
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
];
|
|
|
|
NIX_LDFLAGS = "-lcrypt -lssl -lcrypto -lpam -lcap -lseccomp";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
tests = { inherit (nixosTests) vsftpd; };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Very secure FTP daemon";
|
|
mainProgram = "vsftpd";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|