summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2025-12-11 09:51:48 +0100
committerCayetano Santos <csantosb@inventati.org>2025-12-17 13:36:27 +0100
commitd87a646b0ac0f32b04f2468088a63998ea5e30ad (patch)
treec7c22cd07d1b3d51a0778c4e3b82ab6a4d40e47e /gnu
parent4bd47431d663a14ccdfd05c2c39fbecb0dc3c9e7 (diff)
gnu: cracklib: Update to 2.10.3.
* gnu/packages/password-utils.scm (cracklib): Update to 2.10.3. [source]: Switch to git-fetch. [arguments]<#:phases>: Remove ’install-dict and add ’chdir. [native-inputs]: Add autoconf, automake, libtool and intltool. Change-Id: I1cc877f5d62b594bf7ead4899497420c2d930cb5
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/password-utils.scm29
1 files changed, 15 insertions, 14 deletions
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index e75aae44abe..ba713020361 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -689,25 +689,26 @@ and vice versa.")
689(define-public cracklib 689(define-public cracklib
690 (package 690 (package
691 (name "cracklib") 691 (name "cracklib")
692 (version "2.9.8") 692 (version "2.10.3")
693 (source 693 (source
694 (origin 694 (origin
695 (method url-fetch) 695 (method git-fetch)
696 (uri (string-append "https://github.com/cracklib/cracklib/" 696 (uri (git-reference
697 "releases/download/v" version "/" 697 (url "https://github.com/cracklib/cracklib/")
698 "cracklib-" version ".tar.bz2")) 698 (commit (string-append "v" version))))
699 (sha256 699 (sha256
700 (base32 "11p3f0yqg9d32g3n1qik7jfyl2l14pf8i8vzq3bpram3bqw3978z")))) 700 (base32
701 "037ybxmxap39bjhfajyxnmn8612k638qilfv9r90s6qkxs6lj6ir"))
702 (file-name (git-file-name name version))))
701 (build-system gnu-build-system) 703 (build-system gnu-build-system)
702 (arguments 704 (arguments
703 `(#:phases 705 (list
704 (modify-phases %standard-phases 706 #:phases
705 (add-after 'install 'install-dict 707 #~(modify-phases %standard-phases
706 (lambda* (#:key make-flags #:allow-other-keys) 708 (add-before 'bootstrap 'chdir
707 (begin 709 (lambda _ (chdir "src"))))))
708 (chmod (string-append "util/cracklib-format") #o755) 710 (native-inputs
709 (apply invoke "make" "dict" make-flags) 711 (list autoconf automake libtool intltool))
710 #t))))))
711 (synopsis "Password checking library") 712 (synopsis "Password checking library")
712 (home-page "https://github.com/cracklib/cracklib") 713 (home-page "https://github.com/cracklib/cracklib")
713 (description 714 (description