about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/ftp/vsftpd/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/ftp/vsftpd/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/ftp/vsftpd/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/ftp/vsftpd/default.nix b/nixpkgs/pkgs/servers/ftp/vsftpd/default.nix
new file mode 100644
index 000000000000..1ef624f2a41e
--- /dev/null
+++ b/nixpkgs/pkgs/servers/ftp/vsftpd/default.nix
@@ -0,0 +1,36 @@
+{ 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";
+
+  enableParallelBuilding = true;
+
+  meta = with stdenv.lib; {
+    description = "A very secure FTP daemon";
+    license = licenses.gpl2;
+    maintainers = with maintainers; [ peterhoeg ];
+    platforms = platforms.linux;
+  };
+}