mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: guile-ini: Update to 0.5.1.
* gnu/packages/guile-xyz.scm (guile-ini): Update to 0.5.1. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
b11d029ca3
commit
ac9a7f6be9
1 changed files with 25 additions and 20 deletions
|
@ -4927,28 +4927,33 @@ with a FSM is being built (for example, from a Makefile.)")
|
||||||
(define-public guile-ini
|
(define-public guile-ini
|
||||||
(package
|
(package
|
||||||
(name "guile-ini")
|
(name "guile-ini")
|
||||||
(version "0.3.0")
|
(version "0.5.1")
|
||||||
(source
|
(source (origin
|
||||||
(origin
|
(method git-fetch)
|
||||||
(method git-fetch)
|
(uri (git-reference
|
||||||
(uri (git-reference
|
(url "https://github.com/artyom-poptsov/guile-ini")
|
||||||
(url "https://github.com/artyom-poptsov/guile-ini")
|
(commit (string-append "v" version))))
|
||||||
(commit (string-append "v" version))))
|
(file-name (string-append name "-" version))
|
||||||
(file-name (string-append name "-" version))
|
(sha256
|
||||||
(sha256
|
(base32
|
||||||
(base32
|
"0ky7sffxywc2p84q5kdsphr99q0g5gy45rj0vx7f77hwpfm2093x"))))
|
||||||
"0injn60530valhx3gsmdp72g6z886yf0n08hscky21h3dafm14kc"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags '("GUILE_AUTO_COMPILE=0"))) ;to prevent guild warnings
|
`(#:make-flags '("GUILE_AUTO_COMPILE=0") ;to prevent guild warnings
|
||||||
(native-inputs
|
#:phases (modify-phases %standard-phases
|
||||||
(list autoconf automake pkg-config texinfo))
|
(delete 'strip)
|
||||||
(inputs
|
(add-before 'build 'generate-fsm-context
|
||||||
`(("bash" ,bash-minimal)
|
;; Make sure the intermediate FSM context is present
|
||||||
("guile" ,guile-3.0)
|
;; before the build.
|
||||||
("guile-lib" ,guile-lib)))
|
(lambda _
|
||||||
(propagated-inputs
|
(let ((cwd (getcwd)))
|
||||||
(list guile-smc))
|
(chdir "modules/ini/")
|
||||||
|
(invoke "make" "GUILE_AUTO_COMPILE=0"
|
||||||
|
"fsm-context.scm")
|
||||||
|
(chdir cwd)))))))
|
||||||
|
(native-inputs (list autoconf automake pkg-config texinfo))
|
||||||
|
(inputs (list bash-minimal guile-3.0 guile-lib))
|
||||||
|
(propagated-inputs (list guile-smc))
|
||||||
(home-page "https://github.com/artyom-poptsov/guile-ini")
|
(home-page "https://github.com/artyom-poptsov/guile-ini")
|
||||||
(synopsis "Guile library for INI format support")
|
(synopsis "Guile library for INI format support")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue