diff options
author | Wojtek Kosior <koszko@koszko.org> | 2023-12-12 19:32:15 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2023-12-12 21:17:04 +0100 |
commit | 0309bc25938747c2570e560509644f1d71308006 (patch) | |
tree | 2241b2ec2d640116cba09e9ca7e5d59af887abe8 /guix-devshell | |
parent | c1d4d5b2b0ba2220bd31b20ea02eb4ec80bdc8ac (diff) | |
download | de-paul-records-0309bc25938747c2570e560509644f1d71308006.tar.gz de-paul-records-0309bc25938747c2570e560509644f1d71308006.zip |
Remove guix.scm
Diffstat (limited to 'guix-devshell')
-rw-r--r-- | guix-devshell | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/guix-devshell b/guix-devshell deleted file mode 100644 index 85d8c91..0000000 --- a/guix-devshell +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -# SPDX-License-Identifier: CC0-1.0 -# -# Copyright (C) 2023 Wojtek Kosior <koszko@koszko.org> - -set -eu - -SOURCE_DIR="$(cd "$(dirname "$0")" && pwd -P)" -GUIX_SCM="$SOURCE_DIR"/guix.scm - -EXTRA_PACKAGES="reuse texinfo man-db" - -if test 0 = "$#" -then : - printf 'guix shell -Df '\''%s'\'' %s\n' "$GUIX_SCM" "$EXTRA_PACKAGES" - guix shell -Df "$GUIX_SCM" $PACKAGES -else : - shift - printf 'guix shell -Df '\''%s'\'' %s -- %s\n' "$PACKAGES" "$*" - guix shell -Df "$GUIX_SCM" $PACKAGES -- "$@" -fi |