depot/third_party/nixpkgs/pkgs/tools/networking/swaks/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

34 lines
911 B
Nix

{ lib, stdenv, fetchurl, perl, perlPackages, makeWrapper }:
stdenv.mkDerivation rec {
pname = "swaks";
version = "20240103.0";
src = fetchurl {
url = "https://www.jetmore.org/john/code/swaks/files/${pname}-${version}.tar.gz";
sha256 = "sha256-DlMbTRZAWIAucmaxT03BiXCZ0Jb5MIIN4vm16wjc2+g=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ perl ];
installPhase = ''
mkdir -p $out/bin
mv swaks $out/bin/
wrapProgram $out/bin/swaks --set PERL5LIB \
"${with perlPackages; makePerlPath [
NetSSLeay AuthenSASL NetDNS IOSocketINET6
]}"
'';
meta = with lib; {
homepage = "http://www.jetmore.org/john/code/swaks/";
description = "Featureful, flexible, scriptable, transaction-oriented SMTP test tool";
mainProgram = "swaks";
license = licenses.gpl2Plus;
maintainers = with maintainers; [];
platforms = platforms.all;
};
}