mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
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.
This commit is contained in:
parent
2f5f658d70
commit
e207412e71
1 changed files with 9 additions and 8 deletions
|
@ -365,21 +365,22 @@ (define-public encfs
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue