nixos-config/pkgs/pigeon-mail/default.nix

33 lines
872 B
Nix
Raw Permalink Normal View History

2025-01-15 06:00:12 +00:00
{ lib, fetchFromGitHub, rustPlatform, pkg-config, openssl }:
2024-06-21 08:11:21 +00:00
rustPlatform.buildRustPackage rec {
pname = "pigeon-mail";
version = "0.4.2";
src = fetchFromGitHub {
owner = "quambene";
repo = "pigeon-rs";
rev = "v${version}";
hash = "sha256-qtyPSOG6QFbOM4i9XDXMz1Cmn9a5J8lLhnRkBIWz8Ic=";
};
cargoHash = "sha256-MRSO89qg08GyyIuzEpSO4qQTZS876U3SeGJ6eCO+3BA=";
2025-01-15 06:00:12 +00:00
env = { OPENSSL_NO_VENDOR = "1"; };
2024-06-21 08:11:21 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
# It requires Postgres environment to test so that's a no-go for now.
doCheck = false;
meta = with lib; {
homepage = "https://github.com/quambene/pigeon-rs";
description = "Email automation on the command line";
license = licenses.asl20;
maintainers = with maintainers; [ foo-dogsquared ];
mainProgram = "pigeon";
platform = platforms.unix;
};
}