2021-01-25 08:26:54 +00:00
|
|
|
{ fetchFromGitHub, lib, python3Packages, gnupg, perl }:
|
2010-07-13 16:32:14 +00:00
|
|
|
|
2019-07-16 06:47:59 +00:00
|
|
|
let version = "3.0.0"; in
|
2019-07-16 12:51:26 +00:00
|
|
|
python3Packages.buildPythonApplication {
|
2019-07-16 12:54:58 +00:00
|
|
|
pname = "pius";
|
2010-07-13 16:32:14 +00:00
|
|
|
namePrefix = "";
|
2019-07-16 12:54:58 +00:00
|
|
|
inherit version;
|
2010-07-13 16:32:14 +00:00
|
|
|
|
2017-11-24 11:12:51 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jaymzh";
|
|
|
|
repo = "pius";
|
|
|
|
rev = "v${version}";
|
2019-07-16 06:47:59 +00:00
|
|
|
sha256 = "0l87dx7n6iwy8alxnhvval8h1kl4da6a59hsilbi65c6bpj4dh3y";
|
2010-07-13 16:32:14 +00:00
|
|
|
};
|
|
|
|
|
2016-05-04 10:08:35 +00:00
|
|
|
patchPhase = ''
|
2017-11-24 11:29:59 +00:00
|
|
|
for file in libpius/constants.py pius-keyring-mgr; do
|
|
|
|
sed -i "$file" -E -e's|/usr/bin/gpg2?|${gnupg}/bin/gpg|g'
|
|
|
|
done
|
2016-05-04 10:08:35 +00:00
|
|
|
'';
|
2010-07-13 16:32:14 +00:00
|
|
|
|
2019-07-16 13:28:49 +00:00
|
|
|
buildInputs = [ perl ];
|
2018-08-03 17:06:39 +00:00
|
|
|
|
2010-07-13 16:32:14 +00:00
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.phildev.net/pius/";
|
2010-07-13 16:32:14 +00:00
|
|
|
|
|
|
|
description = "PGP Individual UID Signer (PIUS), quickly and easily sign UIDs on a set of PGP keys";
|
|
|
|
|
2024-10-21 17:58:13 +00:00
|
|
|
longDescription = ''
|
|
|
|
This software will allow you to quickly and easily sign each UID on
|
|
|
|
a set of PGP keys. It is designed to take the pain out of the
|
|
|
|
sign-all-the-keys part of PGP Keysigning Party while adding security
|
|
|
|
to the process.
|
|
|
|
'';
|
2010-07-13 16:32:14 +00:00
|
|
|
|
2024-04-26 11:35:31 +00:00
|
|
|
license = lib.licenses.gpl2Only;
|
2010-07-13 16:32:14 +00:00
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
platforms = lib.platforms.gnu ++ lib.platforms.linux;
|
2024-09-06 05:48:24 +00:00
|
|
|
maintainers = with lib.maintainers; [ ];
|
2010-07-13 16:32:14 +00:00
|
|
|
};
|
|
|
|
}
|