diff options
author | EuAndreh <eu@euandre.org> | 2024-11-17 19:58:51 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-11-17 19:58:51 -0300 |
commit | ff8f00b960f00f1db0bd7dc04de6c69cabc65f88 (patch) | |
tree | dd272ed8905fb70eb39300427936ee103726a0f5 /aux/containers/guix | |
parent | rm src/bin/pb (diff) | |
download | euandre.org-ff8f00b960f00f1db0bd7dc04de6c69cabc65f88.tar.gz euandre.org-ff8f00b960f00f1db0bd7dc04de6c69cabc65f88.tar.xz |
rm -rf aux/
Diffstat (limited to '')
-rw-r--r-- | aux/containers/guix/manifest.scm | 30 | ||||
-rwxr-xr-x | aux/containers/guix/with-container.sh | 19 |
2 files changed, 0 insertions, 49 deletions
diff --git a/aux/containers/guix/manifest.scm b/aux/containers/guix/manifest.scm deleted file mode 100644 index 3ba3fec..0000000 --- a/aux/containers/guix/manifest.scm +++ /dev/null @@ -1,30 +0,0 @@ -(specifications->manifest - (map symbol->string - '(bash - coreutils - findutils - diffutils - grep - sed - git - tar - gzip - gawk - make - perl - shellcheck - pandoc - - md4c - jekyll - python - flac - mediainfo - mdpo-patched - hunspell - inkscape - imagemagick - ffmpeg - lilypond - mktorrent-latest ;; in xyz-euandreh channel - timidity++))) diff --git a/aux/containers/guix/with-container.sh b/aux/containers/guix/with-container.sh deleted file mode 100755 index bd7919a..0000000 --- a/aux/containers/guix/with-container.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh -set -eu - -CHANNEL_REMOTE='https://euandre.org/git/package-repository' -CHANNEL_DIR="${XDG_CACHE_HOME:-$HOME/.cache}/euandreh-guix-channel" - -if [ ! -d "$CHANNEL_DIR" ]; then - git clone "$CHANNEL_REMOTE" "$CHANNEL_DIR" -fi - -git -C "$CHANNEL_DIR" pull - -ENV_CMD="guix environment -L $CHANNEL_DIR/src/ -m aux/containers/guix/manifest.scm" - -if [ -z "${1:-}" ]; then - $ENV_CMD -else - $ENV_CMD --pure -C -- sh -c "$@" -fi |