# GNU Guix --- Functional package management for GNU # Copyright © 2018 Chris Marusich # # This file is part of GNU Guix. # # GNU Guix is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or (at # your option) any later version. # # GNU Guix is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Guix. If not, see . # # Test the `guix pack' command-line utility. # guix pack --version # Use --no-substitutes because we need to verify we can do this ourselves. GUIX_BUILD_OPTIONS="--no-substitutes" export GUIX_BUILD_OPTIONS # Build a tarball. guix pack --bootstrap guile-bootstrap # Build a tarball with a symlink. the_pack="$(guix pack --bootstrap -S /opt/gnu/bin=bin guile-bootstrap)" is_available () { # Use the "type" shell builtin to see if the program is on PATH. type "$1" } if is_available chroot && is_available unshare; then # Verify we can extract and use it. test_directory="$(mktemp -d)" trap 'rm -rf "$test_directory"' EXIT cd "$test_directory" tar -xf "$the_pack" unshare -mrf chroot . /opt/gnu/bin/guile --version cd - else echo "chroot/unshare not available, skipping verification of pack contents" fi # Build a Docker image. guix pack --bootstrap -f docker guile-bootstrap # Build a Docker image with a symlink. guix pack --bootstrap -f docker -S /opt/gnu=/ guile-bootstrap # Build a tarball pack of cross-compiled software. guix pack --bootstrap --target=arm-unknown-linux-gnueabihf guile-bootstrap