From 1a64deeb894dc95e2645a75771732c6cc53a79ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Wed, 4 Oct 2023 01:35:06 +0200 Subject: Squash changes containing private information There were a lot of changes since the previous commit, but a lot of them contained personnal information about users. All thos changes got stashed into a single commit (history is kept in a different place) and private information was moved in a separate private repository --- pkgs/proftpd/default.nix | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 pkgs/proftpd/default.nix (limited to 'pkgs/proftpd') diff --git a/pkgs/proftpd/default.nix b/pkgs/proftpd/default.nix deleted file mode 100644 index af9d6c6..0000000 --- a/pkgs/proftpd/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ pkgs ? import {} }: -with pkgs; - -stdenv.mkDerivation rec { - pname = "proftpd"; - version = "1.3.7c"; - src = fetchurl { - url = "https://github.com/proftpd/proftpd/archive/refs/tags/v${version}.tar.gz"; - sha256 = "1nh02j00ly814fk885wn9zx1lb63cqd8qv3mgz719xkckf5rcw3h"; - }; - postPatch = '' - sed -i -e "s@/usr/bin/file@${file}/bin/file@" configure - ''; - dontDisableStatic = 1; - configureFlags = "--enable-openssl --with-modules=mod_ldap:mod_sftp:mod_tls --with-includes=${libsodium.dev}/include --with-libraries=${libsodium}/lib"; - preInstall = '' - installFlagsArray=(INSTALL_USER=$(id -u) INSTALL_GROUP=$(id -g)) - ''; - buildInputs = [ openssl libsodium ncurses cyrus_sasl openldap pkg-config ]; - postInstall = '' - rmdir $out/var $out/libexec $out/lib/proftpd $out/share/locale - ''; -} -- cgit v1.2.3