about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/swaks/default.nix
blob: 9d776752c8270c1b61b0b3e43870ad03ec9fcafb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv, fetchurl, perl, perlPackages, makeWrapper }:

stdenv.mkDerivation rec {
  pname = "swaks";
  version = "20181104.0";

  src = fetchurl {
    url = "https://www.jetmore.org/john/code/swaks/files/${pname}-${version}.tar.gz";
    sha256 = "0n1yd27xcyb1ylp5gln3yv5gzi9r377hjy1j32367kgb3247ygq2";
  };

  buildInputs = [ perl makeWrapper ];

  installPhase = ''
    mkdir -p $out/bin
    mv swaks $out/bin/

    wrapProgram $out/bin/swaks --set PERL5LIB \
      "${with perlPackages; makePerlPath [
        NetSSLeay AuthenSASL NetDNS IOSocketInet6
      ]}"
  '';

  meta = with stdenv.lib; {
    homepage = http://www.jetmore.org/john/code/swaks/;
    description = ''
      A featureful, flexible, scriptable, transaction-oriented SMTP test tool
    '';
    license = licenses.gpl2;
    maintainers = with maintainers; [ ndowens ];
    platforms = platforms.all;
  };

}