1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 20:21:14 +00:00

vsmtp: init at 1.3.3

This commit is contained in:
Nick Cao 2022-07-23 16:00:43 +08:00
parent 912a3deedc
commit f3170f025c
No known key found for this signature in database
2 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,49 @@
{ 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;
maintainers = with maintainers; [ nickcao ];
};
}

View file

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