diff options
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 231a948ed0..220d254cb8 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -575,7 +575,7 @@ interface and is based on GNU Guile.") (if (or (target-arm?) (target-riscv64?)) guile-fibers-1.1 - guile-fibers)))) + guile-fibers-1.3)))) ;pinned version to avoid rebuilds (inputs (modify-inputs (package-inputs shepherd-0.9) (replace "guile-fibers" (this-package-native-input "guile-fibers")))))) @@ -583,14 +583,14 @@ interface and is based on GNU Guile.") (define-public shepherd-1.0 (package (inherit shepherd-0.10) - (version "1.0.6") + (version "1.0.7") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/shepherd/shepherd-" version ".tar.gz")) (sha256 (base32 - "0cxyf50s7zzszi591f2974r2x3jkmlwrv0y51xjmwscs97ddyx7w")))) + "15vmfbnah4p978zs4j95fl7m3sy98z1brgyz2m8s30zfh5srnnij")))) (arguments (substitute-keyword-arguments (package-arguments shepherd-0.10) ((#:configure-flags flags #~'()) @@ -2817,16 +2817,16 @@ module slots, and the list of I/O ports (e.g. serial, parallel, USB).") (define-public acpica (package (name "acpica") - (version "2025_04_04") + (version "20250807") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/acpica/acpica") - (commit (string-append "R" version)))) + (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0ihya8k5w9xv2q0vmsp5syf3xihwmv3jxczw5j94fkzdkp52xlzr")))) + (base32 "06jh7y9aimw132hgcivn144rp6br2r30jqizh7hrq3nl589f73ir")))) (build-system gnu-build-system) (native-inputs (list flex bison)) (arguments @@ -3015,7 +3015,7 @@ environment variable is set and output is to tty.") (define-public lr (package (name "lr") - (version "1.6") + (version "2.0") (source (origin (method git-fetch) @@ -3024,14 +3024,14 @@ environment variable is set and output is to tty.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0qixmvxikyz02348xc0a718m9b1pzcazvf36rjbdk6ayn66g9hsd")))) + (base32 "05k971vf6080igfila8iav5d4j7sgh301123yng9lvsmr8frf8mf")))) (build-system gnu-build-system) (arguments - `(#:tests? #f ; There are no tests. - #:make-flags (list (string-append "CC=" ,(cc-for-target)) - (string-append "PREFIX=" %output)) - #:phases (modify-phases %standard-phases - (delete 'configure)))) + (list #:tests? #f ; There are no tests. + #:make-flags #~(list (string-append "CC=" #$(cc-for-target)) + (string-append "PREFIX=" %output)) + #:phases #~(modify-phases %standard-phases + (delete 'configure)))) (synopsis "Tool to generate customized file listings") (description "lr is a tool for generating file listings, which includes the best |