<
aboutsummaryrefslogtreecommitdiff
path: root/etc/substitutes
diff options
context:
space:
mode:
authorAlexandros Theodotou <alex@zrythm.org>2022-04-09 00:53:42 +0000
committerLudovic Courtès <ludo@gnu.org>2022-06-15 00:25:21 +0200
commitd22bee814c6ac958196acd56b1921f30194355aa (patch)
tree69eb7e792298ff06180b0b00f37e4c79ab1b09bc /etc/substitutes
parent7735e8ed90c7909ee9dd34737931f02353261986 (diff)
downloadguix-d22bee814c6ac958196acd56b1921f30194355aa.tar.gz
guix-d22bee814c6ac958196acd56b1921f30194355aa.zip
gnu: libadwaita: Update to 1.1.0.
* gnu/packages/gnome.scm (libadwaita): Update to 1.1.0. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'etc/substitutes')
0 files changed, 0 insertions, 0 deletions
etc. # # Case 2: We use --bootstrap, and the build fails because the bootstrap # Guile cannot dlopen shared libraries. Not to mention the fact # that we would still have to build many non-bootstrap inputs # (e.g., guile-json) in order to create the Docker image. # Build a Docker image. guix pack --dry-run --bootstrap -f docker guile-bootstrap # Build a Docker image with a symlink. guix pack --dry-run --bootstrap -f docker -S /opt/gnu= guile-bootstrap # Build a tarball pack of cross-compiled software. Use coreutils because # guile-bootstrap is not intended to be cross-compiled. guix pack --dry-run --bootstrap --target=arm-linux-gnueabihf coreutils # Likewise, 'guix pack -R' requires a full-blown toolchain (because # 'glibc-bootstrap' lacks 'libc.a'), hence '--dry-run'. guix pack -R --dry-run --bootstrap -S /mybin=bin guile-bootstrap # Make sure package transformation options are honored. chmod -Rf +w "$test_directory"; rm -r "$test_directory" mkdir -p "$test_directory" -m 755 drv1="`guix pack --no-grafts -n guile 2>&1 | grep pack.*\.drv`" drv2="`guix pack --no-grafts -n --with-source=guile=$test_directory guile 2>&1 | grep pack.*\.drv`" test -n "$drv1" test "$drv1" != "$drv2" # Try '--manifest' options. cat > "$test_directory/manifest1.scm" <<EOF (specifications->manifest '("guile")) EOF cat > "$test_directory/manifest2.scm" <<EOF (specifications->manifest '("emacs")) EOF drv="`guix pack --no-grafts -d -m "$test_directory/manifest1.scm" -m "$test_directory/manifest2.scm"`" guix gc -R "$drv" | grep `guix build guile -d --no-grafts` guix gc -R "$drv" | grep `guix build emacs -d --no-grafts`