ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
34 lines
913 B
Nix
34 lines
913 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 = "A featureful, flexible, scriptable, transaction-oriented SMTP test tool";
|
|
mainProgram = "swaks";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [];
|
|
platforms = platforms.all;
|
|
};
|
|
|
|
}
|