aboutsummaryrefslogtreecommitdiff
path: root/aux/guix
diff options
context:
space:
mode:
Diffstat (limited to 'aux/guix')
-rw-r--r--aux/guix/manifest.scm18
-rw-r--r--aux/guix/pinned-channels.scm21
-rwxr-xr-xaux/guix/with-container.sh4
3 files changed, 43 insertions, 0 deletions
diff --git a/aux/guix/manifest.scm b/aux/guix/manifest.scm
new file mode 100644
index 0000000..471f7f4
--- /dev/null
+++ b/aux/guix/manifest.scm
@@ -0,0 +1,18 @@
+(specifications->manifest
+ (map symbol->string
+ '(bash
+ coreutils
+ findutils
+ diffutils
+ grep
+ sed
+ jq
+ git
+ make
+ shellcheck
+ direnv
+ git-crypt
+ terraform
+ emacs
+ perl
+ pandoc)))
diff --git a/aux/guix/pinned-channels.scm b/aux/guix/pinned-channels.scm
new file mode 100644
index 0000000..a315ce3
--- /dev/null
+++ b/aux/guix/pinned-channels.scm
@@ -0,0 +1,21 @@
+(list
+ (channel
+ (name 'euandreh)
+ (url "git://git.euandreh.xyz/euandreh-guix-channel")
+ (branch "master")
+ (introduction
+ (make-channel-introduction
+ "641f9388002cd874040938ab1c6da7ac9d0e54ca"
+ (openpgp-fingerprint
+ "5BDA E9B8 B2F6 C6BC BB0D 6CE5 81F9 0EC3 CD35 6060"))))
+ (channel
+ (name 'guix)
+ (url "https://git.savannah.gnu.org/git/guix.git")
+ (commit
+ "dc2de508a38d8e0a3f93e8d6ded225d3a7e32548")
+ (introduction
+ (make-channel-introduction
+ "9edb3f66fd807b096b48283debdcddccfea34bad"
+ (openpgp-fingerprint
+ "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA")))))
+
diff --git a/aux/guix/with-container.sh b/aux/guix/with-container.sh
new file mode 100755
index 0000000..db7b121
--- /dev/null
+++ b/aux/guix/with-container.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+set -eux
+
+guix time-machine -C aux/guix/pinned-channels.scm -- environment --pure -C -m aux/guix/manifest.scm -- sh -c "$@"