aboutsummaryrefslogtreecommitdiff
path: root/aux/containers/guix/with-container.sh
blob: 045e757308d2313cafad394464629a6cc16ef137 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -eu

ENV_CMD='guix time-machine --fallback -C aux/containers/guix/pinned-channels.scm -- environment --fallback -m aux/containers/guix/manifest.scm'
if [ -z "${1:-}" ]; then
	$ENV_CMD
else
	$ENV_CMD --pure -C -- sh -c "$@"
fi