Merge pull request #165672 from yoctocell/patatt-init

main
Sandro 2 years ago committed by GitHub
commit ac5ea36581
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      lib/licenses.nix
  2. 28
      pkgs/development/tools/patatt/default.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -612,6 +612,11 @@ in mkLicense lset) ({
fullName = "Enlightenment License (e16)";
};
mit0 = {
spdxId = "MIT-0";
fullName = "MIT No Attribution";
};
mpl10 = {
spdxId = "MPL-1.0";
fullName = "Mozilla Public License 1.0";

@ -0,0 +1,28 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "patatt";
version = "0.4.9";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "sha256-qHhNxgP43vBSjrHp2Ygzq5J/f6YyBD4VDTp9S1ud6zo=";
};
propagatedBuildInputs = with python3Packages; [
pynacl
];
meta = with lib; {
homepage = "https://git.kernel.org/pub/scm/utils/patatt/patatt.git/about/";
license = licenses.mit0;
description = "Add cryptographic attestation to patches sent via email";
longDescription = ''
This utility allows an easy way to add end-to-end cryptographic
attestation to patches sent via mail. It does so by adapting the
DKIM email signature standard to include cryptographic
signatures via the X-Developer-Signature email header.
'';
maintainers = with maintainers; [ yoctocell ];
};
}

@ -8904,6 +8904,8 @@ with pkgs;
patchage = callPackage ../applications/audio/patchage { };
patatt = callPackage ../development/tools/patatt { };
pcapfix = callPackage ../tools/networking/pcapfix { };
pbzip2 = callPackage ../tools/compression/pbzip2 { };

Loading…
Cancel
Save