diff options
author | Marius Bakke <[email protected]> | 2022-07-27 17:53:05 +0200 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2022-07-27 17:53:05 +0200 |
commit | 6a3ed96af73939df69167b5736d03abf1d7ecebd (patch) | |
tree | c44435fc118e474835323ece38d5e560d0d62dc0 /gnu/packages/cpp.scm | |
parent | f7815e76b00f61959e3bae68e4d7365ace45abf1 (diff) | |
parent | 4059158e6a284976c80b0fe8f64f69868d59ab10 (diff) |
Merge branch 'staging' into core-updates
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r-- | gnu/packages/cpp.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 5ae5efc330..8330f0d157 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -1474,7 +1474,7 @@ output randomness while retaining speed, simplicity, and conciseness.") (define-public libconfini (package (name "libconfini") - (version "1.16.3") + (version "1.16.4") (source (origin (method git-fetch) (uri (git-reference @@ -1483,10 +1483,12 @@ output randomness while retaining speed, simplicity, and conciseness.") (file-name (git-file-name name version)) (sha256 (base32 - "01g8ai2z4fwshk06k824j6ib8nfb3cwxs5kqpqjvv4k5ayzm892h")))) + "002lmf1b2phmc6s348k00yx5shrcc7psn3pgqvraxvr6n8g747jx")))) (build-system gnu-build-system) (arguments - `(#:phases + `(#:configure-flags + (list "--disable-static") + #:phases (modify-phases %standard-phases (replace 'bootstrap (lambda _ (invoke "sh" "bootstrap" "--noconfigure")))))) |