aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2023-12-12 19:32:15 +0100
committerWojtek Kosior <koszko@koszko.org>2023-12-12 21:17:04 +0100
commit0309bc25938747c2570e560509644f1d71308006 (patch)
tree2241b2ec2d640116cba09e9ca7e5d59af887abe8
parentc1d4d5b2b0ba2220bd31b20ea02eb4ec80bdc8ac (diff)
downloadde-paul-records-0309bc25938747c2570e560509644f1d71308006.tar.gz
de-paul-records-0309bc25938747c2570e560509644f1d71308006.zip
Remove guix.scm
-rw-r--r--Makefile.am1
-rw-r--r--guix-devshell22
-rw-r--r--guix.scm13
3 files changed, 0 insertions, 36 deletions
diff --git a/Makefile.am b/Makefile.am
index df2368c..3300b3a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -7,7 +7,6 @@ SUBDIRS = src/guile tests/guile
EXTRA_DIST = \
LICENSES/CC0-1.0.txt \
.reuse/dep5 \
- guix-devshell \
bootstrap \
.gitignore \
README.md.license
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
diff --git a/guix.scm b/guix.scm
deleted file mode 100644
index 663e291..0000000
--- a/guix.scm
+++ /dev/null
@@ -1,13 +0,0 @@
-;;; SPDX-License-Identifier: CC0-1.0
-;;;
-;;; Copyright (C) Wojtek Kosior <koszko@koszko.org>
-
-(use-modules ((guix inferior) #:select (inferior-for-channels))
- ((guix channels) #:select (channel)))
-
-(define inferior
- (inferior-for-channels (list (channel
- (name 'guix)
- (url "https://git.koszko.org/guix")))))
-
-(car (lookup-inferior-packages inferior "guile-de-paul-records"))