blob: ca29abda6c3741dccd8d78637810977e1cb2400a (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 website 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/koszko-org-website.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 (koszko-org-website))
koszko-org-website
|