aboutsummaryrefslogtreecommitdiff
path: root/guix.scm
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-10-17 14:49:21 +0200
committerWojtek Kosior <koszko@koszko.org>2022-10-17 14:50:50 +0200
commited2e14dd6ced4f64b6ac707c5998b38a78e6d7ad (patch)
treead57a2d94456011d0e770ddce6ad224a84a88561 /guix.scm
parent6c1f8221d17b1f4d7955d48a77fefeaf6e3030d7 (diff)
downloadhaketilo-hydrilla-ed2e14dd6ced4f64b6ac707c5998b38a78e6d7ad.tar.gz
haketilo-hydrilla-ed2e14dd6ced4f64b6ac707c5998b38a78e6d7ad.zip
[builder][server][proxy] orchestrate Guix-powered development with a Makefile
* We're no longer treating builds from git and builds from release tarball differently. We now generate a source tarball under `./dist/` in both cases. * We're now using `guix time-machine` to ensure we're always running a Guix revision that works.
Diffstat (limited to 'guix.scm')
-rw-r--r--guix.scm16
1 files changed, 16 insertions, 0 deletions
diff --git a/guix.scm b/guix.scm
new file mode 100644
index 0000000..10a7cec
--- /dev/null
+++ b/guix.scm
@@ -0,0 +1,16 @@
+;; 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 hydrilla package to be defined in a module so that we can
+;; specify it to guix-pack. Hence, the bulk of definitions resides in
+;; `hydrilla-guix/hydrilla.scm` and this file is just a thin wrapper around
+;; that.
+
+(add-to-load-path (string-append (dirname (current-filename)) "/hydrilla-guix"))
+
+(use-modules (hydrilla))
+
+hydrilla