mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: libxcrypt: Build from tarball.
* gnu/packages/crypto.scm (libxcrypt): Switch to url-fetch as it is now a transitive dependency of git-minimal. Because we're building from a tarball, remove autotools and pkg-config dependencies. Change-Id: I6479db1efe325bbdd109e4db051096d6345ad6a1
This commit is contained in:
parent
9b9977f355
commit
4eb52d484e
1 changed files with 7 additions and 15 deletions
|
@ -1653,24 +1653,16 @@ (define-public libxcrypt
|
|||
(version "4.4.36")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/besser82/libxcrypt")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append
|
||||
"https://github.com/besser82/libxcrypt/releases/download/v" version
|
||||
"/libxcrypt-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "1yhpjjjv38y14nrj15bkndq824v42plndgi3k8mmc04grj1fbnjf"))))
|
||||
(base32 "0hw9zphnbzgys5k7ja37iqmwmlyn0y417qr6xqmdw08axv5g9qg5"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
(list autoconf
|
||||
automake
|
||||
libtool
|
||||
perl
|
||||
pkg-config
|
||||
;; Do not run tests needing python, since Python < 3.13 needs it
|
||||
;; for its crypt module
|
||||
#;python-3
|
||||
#;python-passlib))
|
||||
(list perl))
|
||||
(synopsis
|
||||
"Extended crypt library for descrypt, md5crypt, bcrypt, and others")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue