diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-12-18 21:29:45 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-12-19 00:48:40 +0100 |
commit | e207412e7155a24db6171e2c3b70560231c10947 (patch) | |
tree | f7053967fa32fcc6badcaf91985c5e3d9795596e /gnu | |
parent | 2f5f658d70c54dc8aec66118d514bedfb570af24 (diff) |
gnu: keyutils: Update to 1.6.3.
* gnu/packages/crypto.scm (keyutils): Update to 1.6.3.
[source]: Use GIT-FETCH and GIT-FILE-NAME.
[arguments]: Don't explicitly return #t from phases.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crypto.scm | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 3751a325f0..3fb5869dad 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -365,21 +365,22 @@ the wrong hands.") (define-public keyutils (package (name "keyutils") - (version "1.6.1") + (version "1.6.3") (source (origin - (method url-fetch) - (uri - (string-append "https://people.redhat.com/dhowells/keyutils/keyutils-" - version ".tar.bz2")) + (method git-fetch) + (uri (git-reference + (url (string-append "https://git.kernel.org/pub/scm/linux/kernel/" + "git/dhowells/keyutils.git")) + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 - (base32 "1kk4pmyflgplkgxn2bzpc069ph9c9jdd9ikcsyd5pnaimqi5gcf8")) + (base32 "1095g1p5038m91wf2dxnagngpvww7ilcj8fhyviid3srvxr675i7")) (modules '((guix build utils))) ;; Create relative symbolic links instead of absolute ones to /lib/*. (snippet '(begin (substitute* "Makefile" (("\\$\\(LNS\\) \\$\\(LIBDIR\\)/") - "$(LNS) ")) - #t)))) + "$(LNS) ")))))) (build-system gnu-build-system) (arguments `(#:phases (modify-phases %standard-phases |