Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
782 B
Nix
33 lines
782 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication {
|
|
pname = "zeyple";
|
|
version = "unstable-2021-04-10";
|
|
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "infertux";
|
|
repo = "zeyple";
|
|
rev = "cc125b7b44432542b227887fd7e2701f77fd8ca2";
|
|
sha256 = "0r2d1drg2zvwmn3zg0qb32i9mh03r5di9q1yszx23r32rsax9mxh";
|
|
};
|
|
|
|
propagatedBuildInputs = [ python3Packages.gpgme ];
|
|
installPhase = ''
|
|
install -Dm755 $src/zeyple/zeyple.py $out/bin/zeyple
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Utility program to automatically encrypt outgoing emails with GPG";
|
|
homepage = "https://infertux.com/labs/zeyple/";
|
|
maintainers = with maintainers; [ ettom ];
|
|
license = licenses.agpl3Plus;
|
|
mainProgram = "zeyple";
|
|
};
|
|
}
|