aboutsummaryrefslogtreecommitdiff
path: root/guix.scm
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2017-08-21 19:20:09 +0100
committerChristopher Baines <mail@cbaines.net>2017-08-21 19:20:09 +0100
commit21cdfe7fd4a6f3e30a75388e3e502c6d0352eda5 (patch)
treedfed336a5d697aa27bd303c2cf3c9e357af0881b /guix.scm
parent637db05e682592f24dca1f2d60bbbcdc0f7882fc (diff)
downloadosm-examples-master.tar
osm-examples-master.tar.gz
Switch to using Guix to get the custom version of ikiwikiHEADmaster
Diffstat (limited to 'guix.scm')
-rw-r--r--guix.scm19
1 files changed, 19 insertions, 0 deletions
diff --git a/guix.scm b/guix.scm
new file mode 100644
index 0000000..34b9179
--- /dev/null
+++ b/guix.scm
@@ -0,0 +1,19 @@
+(use-modules (guix packages)
+ (guix git-download)
+ (gnu packages web))
+
+(define custom-ikiwiki
+ (let ((commit "43b44dbbda102ff0e7f00693c3a80c7af10f2a7e"))
+ (package
+ (inherit ikiwiki)
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "http://git.cbaines.net/ikiwiki")
+ (commit commit)))
+ (sha256
+ (base32
+ "1mqlh779kcql8nxjdfws9p2z7xyygn2xp4h6gc4vzc6m0lhb84m6"))
+ (file-name (string-append "ikiwiki-" (string-take commit 7))))))))
+
+custom-ikiwiki