aboutsummaryrefslogtreecommitdiff
path: root/guix.scm
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-12-10 13:08:42 +0100
committerWojtek Kosior <koszko@koszko.org>2022-12-10 13:08:42 +0100
commit20ec27c878cb4dc571ffb789adb62320c56b4e24 (patch)
tree07ee2dc9c48b78d5c67e550b075a3019a3ef900d /guix.scm
parentf8e1787c1a705902851b2f3aa87bceaa83f45147 (diff)
downloadsheets-websites-20ec27c878cb4dc571ffb789adb62320c56b4e24.tar.gz
sheets-websites-20ec27c878cb4dc571ffb789adb62320c56b4e24.zip
add updated websites files and facilitate deployment under Guix
Diffstat (limited to 'guix.scm')
-rw-r--r--guix.scm18
1 files changed, 18 insertions, 0 deletions
diff --git a/guix.scm b/guix.scm
new file mode 100644
index 0000000..21daea9
--- /dev/null
+++ b/guix.scm
@@ -0,0 +1,18 @@
+;; SPDX-License-Identifier: CC0-1.0
+
+;; Copyright (C) 2022 Wojtek Kosior <koszko@koszko.org>
+;;
+;; Available under the terms of Creative Commons Zero v1.0 Universal.
+
+;; We need the actual websites package to be defined in a module so that the
+;; parent repository can more easily use it with `guix system`. Hence, the bulk
+;; of Guile code resides in `guix-module-dir/sheets-websites.scm` and this
+;; file is just a thin wrapper around that.
+
+(add-to-load-path (string-append
+ (dirname (current-filename))
+ "/guix-module-dir"))
+
+(use-modules (sheets-websites))
+
+sheets-websites