diff options
author | Kyle Meyer <kyle@kyleam.com> | 2021-05-22 13:37:04 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2021-05-22 13:37:04 -0400 |
commit | d3295fa7a7cd04175c184c55e4368ce748091e65 (patch) | |
tree | 18345c53ae2a8324204301e4801446c89ac85a4e /km-packages | |
parent | 4bd7e319b2979f85f7206b1ca8d327f82a007e04 (diff) | |
download | guix-packages-d3295fa7a7cd04175c184c55e4368ce748091e65.tar.gz |
misc: Add patatt
This will be required by the next b4 release.
Diffstat (limited to 'km-packages')
-rw-r--r-- | km-packages/misc.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/km-packages/misc.scm b/km-packages/misc.scm index a330ba3..9afe13b 100644 --- a/km-packages/misc.scm +++ b/km-packages/misc.scm @@ -22,6 +22,7 @@ #:use-module (gnu packages) #:use-module (gnu packages check) #:use-module (gnu packages python) + #:use-module (gnu packages python-crypto) #:use-module (gnu packages python-web) #:use-module (gnu packages python-xyz) #:use-module (gnu packages version-control) @@ -77,3 +78,23 @@ (synopsis "todo") (description "todo") (license license:gpl3))) + +(define-public patatt + (package + (name "patatt") + (version "0.4.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "patatt" version)) + (sha256 + (base32 "1p5jzy615mckmdayzj2xacl8hsy0xqlwvi6s40gpnywzpmlh64n9")))) + (build-system python-build-system) + (arguments '(#:tests? #f)) ; No tests. + (propagated-inputs + `(("python-pynacl" ,python-pynacl))) + (home-page "https://git.kernel.org/pub/scm/utils/patatt/patatt.git") + (synopsis "Tool for cryptographic patch attestation ") + (description "TODO") + ;; TODO: It's actually MIT-Zero. + (license license:expat))) |