mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
8926311238
We still use that version on aarch64.
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl, libcap, openssl, pam }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "vsftpd-3.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://security.appspot.com/downloads/${name}.tar.gz";
|
|
sha256 = "1xsyjn68k3fgm2incpb3lz2nikffl9by2safp994i272wvv2nkcx";
|
|
};
|
|
|
|
buildInputs = [ libcap openssl pam ];
|
|
|
|
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
|
|
|
|
mkdir -p $out/sbin $out/man/man{5,8}
|
|
'';
|
|
|
|
NIX_LDFLAGS = "-lcrypt -lssl -lcrypto -lpam -lcap";
|
|
|
|
# On gcc9, this would produce
|
|
# error: '-Werror=enum-conversion': no option -Wenum-conversion
|
|
NIX_CFLAGS_COMPILE = lib.optionalString (lib.versionAtLeast stdenv.cc.version "10")
|
|
"-Wno-error=enum-conversion";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "A very secure FTP daemon";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|