guix-play/guix/build-system
Ludovic Courtès 25947bbc32
build-system: Always pass #:graft? #f to 'gexp->derivation'.
Fixes <https://issues.guix.gnu.org/60947>.

Fixes a bug whereby packages referred via 'ungexp' in package arguments
would be "double-grafted": 'gexp->derivation' would first replace those
references by references to the grafted package, only to repeat the
grafting process on the result.

Build systems such as 'gnu', 'cmake', and 'pyproject' were already doing
this.  Only the rest of them is affected.

* guix/build-system/cargo.scm (cargo-build): Pass #:graft? #f to
'gexp->derivation'.
* guix/build-system/copy.scm (copy-build): Likewise.
* guix/build-system/dune.scm (dune-build): Likewise.
* guix/build-system/font.scm (font-build): Likewise.
* guix/build-system/guile.scm (guile-build): Likewise.
(guile-cross-build): Likewise.
* guix/build-system/ocaml.scm (ocaml-build): Likewise.
* guix/build-system/ruby.scm (ruby-build): Likewise.
* guix/build-system/scons.scm (scons-build): Likewise.
* guix/build-system/texlive.scm (texlive-build): Likewise.
* guix/build-system/waf.scm (waf-build): Likewise.
2023-02-03 16:26:20 +01:00
..
android-ndk.scm build-system/android-ndk: Pass #:bootstrap-scripts to build phases. 2021-04-01 22:00:04 +02:00
ant.scm build-system: Use 'sexp->gexp' for plain sexps. 2021-03-30 22:48:44 +02:00
asdf.scm build-system: asdf: Add asd-operation parameter. 2022-08-03 16:45:54 +02:00
cargo.scm build-system: Always pass #:graft? #f to 'gexp->derivation'. 2023-02-03 16:26:20 +01:00
channel.scm build-system/channel: Correctly handle store file name from (gnu ci). 2022-08-11 15:57:35 +02:00
chicken.scm Merge branch 'master' into core-updates-frozen 2021-09-07 14:19:08 +02:00
clojure.scm build-system/clojure: Support compiling Java. 2022-01-24 10:38:14 +01:00
cmake.scm build-system: Pass #:make-dynamic-linker-cache? #f when cross-compiling. 2022-01-11 20:34:59 +01:00
copy.scm build-system: Always pass #:graft? #f to 'gexp->derivation'. 2023-02-03 16:26:20 +01:00
dub.scm build-system/dub: Use the gold linker. 2022-06-19 02:00:00 +02:00
dune.scm build-system: Always pass #:graft? #f to 'gexp->derivation'. 2023-02-03 16:26:20 +01:00
elm.scm gnu: elm: Support 'elm reactor'. 2022-05-22 01:07:54 +02:00
emacs.scm build-system: Use 'sexp->gexp' for plain sexps. 2021-03-30 22:48:44 +02:00
font.scm build-system: Always pass #:graft? #f to 'gexp->derivation'. 2023-02-03 16:26:20 +01:00
glib-or-gtk.scm build: glib-or-gtk: Generate the gdk-pixbuf-loaders cache file in a phase. 2021-11-11 12:18:19 -05:00
gnu.scm build-system/gnu: Turn #:phases into a gexp when cross-compiling. 2022-11-08 14:06:00 +01:00
go.scm gnu: Add go-github-com-creack-pty. 2022-11-10 23:17:18 -05:00
guile.scm build-system: Always pass #:graft? #f to 'gexp->derivation'. 2023-02-03 16:26:20 +01:00
haskell.scm Merge remote-tracking branch 'origin/master' into core-updates-frozen 2021-12-05 19:17:41 +01:00
julia.scm build: julia: Add 'julia-package-dependencies' as keyword. 2022-02-24 12:20:31 +02:00
linux-module.scm gnu: linux-libre: Move documentation to a separate package. 2022-12-06 22:03:44 -05:00
maven.scm build-system: Use 'sexp->gexp' for plain sexps. 2021-03-30 22:48:44 +02:00
meson.scm build-system/meson: Add mips64el cross compilation support. 2023-01-17 10:50:58 +01:00
minetest.scm gnu: minetest: move to minetest.scm. 2021-08-20 13:37:32 +02:00
minify.scm Merge branch 'master' into core-updates-frozen 2021-07-29 22:34:57 +02:00
node.scm guix: node-build-system: Add implicit libuv input. 2022-01-09 02:07:11 +01:00
ocaml.scm build-system: Always pass #:graft? #f to 'gexp->derivation'. 2023-02-03 16:26:20 +01:00
perl.scm build-system/perl: Support cross-compilation of some Perl packages. 2022-08-06 18:21:12 +02:00
pyproject.scm build-system/pyproject: Always run tests verbosely for supported backends. 2022-10-27 21:30:03 +02:00
python.scm build-system/python: Disable grafts. 2022-10-22 01:46:54 +02:00
qt.scm build-system/qt: Disable grafts. 2022-10-17 23:15:07 +02:00
r.scm guix: Upgrade to Bioconductor 3.16. 2022-11-24 12:31:11 +01:00
rakudo.scm build-system: Use 'sexp->gexp' for plain sexps. 2021-03-30 22:48:44 +02:00
rebar.scm import: Add hex.pm importer. 2022-06-15 10:18:34 +02:00
renpy.scm Merge remote-tracking branch 'origin/master' into core-updates-frozen. 2021-10-12 17:46:23 +00:00
ruby.scm build-system: Always pass #:graft? #f to 'gexp->derivation'. 2023-02-03 16:26:20 +01:00
scons.scm build-system: Always pass #:graft? #f to 'gexp->derivation'. 2023-02-03 16:26:20 +01:00
texlive.scm build-system: Always pass #:graft? #f to 'gexp->derivation'. 2023-02-03 16:26:20 +01:00
trivial.scm gexp: Leave grafting as is when lowering allowed/disallowed references. 2021-09-25 00:41:32 +02:00
waf.scm build-system: Always pass #:graft? #f to 'gexp->derivation'. 2023-02-03 16:26:20 +01:00