diff options
author | Christopher Baines <ikiwiki.info> | 2017-08-21 19:24:32 +0100 |
---|---|---|
committer | Christopher Baines <ikiwiki.info> | 2017-08-21 19:24:32 +0100 |
commit | 4dc99e3510d356b6ef922cc65288b986d84ab469 (patch) | |
tree | 89907a870bd32276ae13626e5ae1d03cb656cb81 | |
parent | d9710c8df7c46ce88cad5d47f50671b464104ec9 (diff) | |
download | cbaines.net-4dc99e3510d356b6ef922cc65288b986d84ab469.tar cbaines.net-4dc99e3510d356b6ef922cc65288b986d84ab469.tar.gz |
Add guix.scm
-rw-r--r-- | guix.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/guix.scm b/guix.scm new file mode 100644 index 0000000..4ae6b47 --- /dev/null +++ b/guix.scm @@ -0,0 +1,19 @@ +(use-modules (guix packages) + (guix git-download) + (gnu packages web)) + +(define custom-ikiwiki + (let ((commit "2b4ab4548c80e608d08602ca4c60cb41e71ff3b2")) + (package + (inherit ikiwiki) + (source (origin + (method git-fetch) + (uri (git-reference + (url "http://git.cbaines.net/ikiwiki") + (commit commit))) + (sha256 + (base32 + "1igbzyy0ys27w73ml7ajcpxy9cxs7v3s9qrcsw4cxb1w7195xi7w")) + (file-name (string-append "ikiwiki-" (string-take commit 7)))))))) + +custom-ikiwiki |