summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-11-10 10:58:36 -0300
committerEuAndreh <eu@euandre.org>2023-11-10 10:58:36 -0300
commit78e9f238aa69e56dc196e0dc13df350f1bf8e8f9 (patch)
tree67b023e349cd074632710f9c52183e9d62ae7f66
parenttests/assert-install.sh: Always to enforce correct installation (diff)
downloadpapod-78e9f238aa69e56dc196e0dc13df350f1bf8e8f9.tar.gz
papod-78e9f238aa69e56dc196e0dc13df350f1bf8e8f9.tar.xz
aux/: Add basic Guix container support
-rwxr-xr-xaux/container4
-rw-r--r--aux/manifest.scm7
2 files changed, 11 insertions, 0 deletions
diff --git a/aux/container b/aux/container
new file mode 100755
index 0000000..8e17ece
--- /dev/null
+++ b/aux/container
@@ -0,0 +1,4 @@
+#!/bin/sh
+set -eu
+
+exec guix shell --pure -S/usr/bin/env=bin/env -Cv3 -m aux/manifest.scm "$@"
diff --git a/aux/manifest.scm b/aux/manifest.scm
new file mode 100644
index 0000000..5f516fa
--- /dev/null
+++ b/aux/manifest.scm
@@ -0,0 +1,7 @@
+(specifications->manifest
+ (map
+ symbol->string
+ '(busybox
+ git-minimal
+ make
+ node)))