gnu: rust-sct-0.5: Fix build.

* gnu/packages/crates-io.scm (rust-sct-0.5)[arguments]: Add a phase to
build the curve25519 tables.
[native-inputs]: Add clang, perl, python-2.
This commit is contained in:
Efraim Flashner 2023-04-25 14:18:39 +03:00
parent dc2fa72266
commit 1a17603940
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -54220,7 +54220,18 @@ (define-public rust-sct-0.5
(arguments
`(#:cargo-inputs
(("rust-ring" ,rust-ring-0.14)
("rust-untrusted" ,rust-untrusted-0.6))))))
("rust-untrusted" ,rust-untrusted-0.6))
#:phases
(modify-phases %standard-phases
(add-before 'build 'build-curve25519-tables
(lambda* (#:key vendor-dir #:allow-other-keys)
(with-directory-excursion
(dirname (car (find-files vendor-dir "make_curve25519_tables.py")))
(with-output-to-file "curve25519_tables.h"
(lambda _
(invoke "python" "make_curve25519_tables.py")))))))))
(native-inputs
(list clang perl python-2))))
(define-public rust-sct-0.4
(package