Merge pull request #182552 from NickCao/vsmtp

vsmtp: init at 1.3.3
This commit is contained in:
Stanisław Pitucha 2022-10-15 14:28:27 +11:00 committed by GitHub
commit a5b475a90e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,50 @@
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, pkg-config
, installShellFiles
, openssl
, testers
, vsmtp
}:
rustPlatform.buildRustPackage rec {
pname = "vsmtp";
version = "1.3.3";
src = fetchFromGitHub {
owner = "viridIT";
repo = "vsmtp";
rev = "v${version}";
hash = "sha256-nBkfIjACmjnVNF3hJ22B4ecjWrX9licV7c8Yxv2tQCg=";
};
cargoHash = "sha256-HqQ8WD1/K7xMx97SbuP45Q/+4oADh1WZFJPXB8wlkbM=";
nativeBuildInputs = [ pkg-config installShellFiles ];
buildInputs = [ openssl ];
cargoBuildFlags = [
"--package"
"vsmtp"
"--package"
"vqueue"
];
postInstall = ''
installManPage tools/install/man/*.1
'';
passthru = {
tests.version = testers.testVersion { package = vsmtp; version = "v${version}"; };
};
meta = with lib; {
description = "A next-gen mail transfer agent (MTA) written in Rust";
homepage = "https://viridit.com";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ nickcao ];
};
}

View File

@ -22455,6 +22455,8 @@ with pkgs;
vrpn = callPackage ../development/libraries/vrpn { };
vsmtp = callPackage ../servers/mail/vsmtp { };
vsqlite = callPackage ../development/libraries/vsqlite { };
vte = callPackage ../development/libraries/vte {