diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index eb00326ad2..ae68a2992e 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -518,7 +518,7 @@ (define-public tomb (define-public scrypt (package (name "scrypt") - (version "1.2.1") + (version "1.3.1") (source (origin (method url-fetch) @@ -526,13 +526,16 @@ (define-public scrypt version ".tgz")) (sha256 (base32 - "0xy5yhrwwv13skv9im9vm76rybh9f29j2dh4hlh2x01gvbkza8a6")))) + "1hnl0r6pmyxiy4dmafmqk1db7wpc0x9rqpzqcwr9d2cmghcj6byz")))) (build-system gnu-build-system) (arguments `(#:license-file-regexp "COPYRIGHT" #:phases (modify-phases %standard-phases - (add-after 'unpack 'patch-command-invocations + (add-after 'unpack 'patch-$PATH-assumptions (lambda _ + (substitute* "configure" + (("\\{POSIX_PATH\\}") + "{PATH}")) (substitute* "Makefile.in" (("command -p") "")) #t))