3eef2318bb
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/swaks/versions
35 lines
879 B
Nix
35 lines
879 B
Nix
{ stdenv, fetchurl, perl, perlPackages, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "swaks";
|
|
version = "20190914.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.jetmore.org/john/code/swaks/files/${pname}-${version}.tar.gz";
|
|
sha256 = "12awq5z4sdd54cxprj834zajxhkpy4jwhzf1fhigcx1zbhdaacsp";
|
|
};
|
|
|
|
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;
|
|
};
|
|
|
|
}
|