mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
gnu: Reference the inherited inputs values.
This commit was made by running this command: sed -e's/modify-inputs (package-\([a-z-]*\)inputs [a-zA-Z0-9-]\+)/modify-inputs \1inputs/g' -i gnu/packages/*.scm … and then reverting individual hunks where the change would trigger unbound variable warnings or other issues (such as ‘native-inputs’ is bound in the body of the ‘inputs’ field, but it refers to the ‘native-inputs’ thunk defined just above). Change-Id: I6d94819f2809313fa1fbefc61897502ee7d66fab
This commit is contained in:
@@ -539,7 +539,7 @@ table-level bloom filters, and updates to the MANIFEST format.")
|
||||
((#:tests? _ #t) #f) ; TODO: Find out why some tests fails to build
|
||||
((#:import-path _) "github.com/cockroachdb/pebble/v2")))
|
||||
(propagated-inputs
|
||||
(modify-inputs (package-propagated-inputs go-github-com-cockroachdb-pebble)
|
||||
(modify-inputs propagated-inputs
|
||||
(append go-github-com-cockroachdb-crlib
|
||||
go-github-com-cockroachdb-swiss
|
||||
go-github-com-minio-minlz
|
||||
@@ -1624,9 +1624,9 @@ pictures, sounds, or video.")
|
||||
"0snbxmlygf7m4cxjpscmz3yjn4lnqsw313y9xgpv7vk9k9gm20s4"))
|
||||
(patches (search-patches
|
||||
"postgresql-disable-resolve_symlinks.patch"))))
|
||||
(native-inputs (modify-inputs (package-native-inputs postgresql-16)
|
||||
(native-inputs (modify-inputs native-inputs
|
||||
(delete "pkg-config")))
|
||||
(inputs (modify-inputs (package-inputs postgresql-16)
|
||||
(inputs (modify-inputs inputs
|
||||
(delete "icu4c")))))
|
||||
|
||||
(define-public postgresql-14
|
||||
|
||||
Reference in New Issue
Block a user