aboutsummaryrefslogtreecommitdiff
path: root/_pastebins
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--_pastebins/2019-06-08-inconsistent-hash-of-buildgomodule.md4
-rw-r--r--_pastebins/2020-11-27-guix-build-local-module.md8
2 files changed, 8 insertions, 4 deletions
diff --git a/_pastebins/2019-06-08-inconsistent-hash-of-buildgomodule.md b/_pastebins/2019-06-08-inconsistent-hash-of-buildgomodule.md
index 3d5efb5..12a498b 100644
--- a/_pastebins/2019-06-08-inconsistent-hash-of-buildgomodule.md
+++ b/_pastebins/2019-06-08-inconsistent-hash-of-buildgomodule.md
@@ -10,7 +10,9 @@ lang: en
---
-[FIXED](https://discourse.nixos.org/t/inconsistent-hash-of-buildgomodule/3127/2).
+FIXED: See https://discourse.nixos.org/t/inconsistent-hash-of-buildgomodule/3127/2
+
+---
The [commit that made this visible][0].
diff --git a/_pastebins/2020-11-27-guix-build-local-module.md b/_pastebins/2020-11-27-guix-build-local-module.md
index b1d242e..49bcd86 100644
--- a/_pastebins/2020-11-27-guix-build-local-module.md
+++ b/_pastebins/2020-11-27-guix-build-local-module.md
@@ -5,6 +5,10 @@ layout: pastebin
lang: en
---
+FIXED: rename `name` on line 9 of the first snippet, and use `"my-hello"` instead of `"hello"`.
+
+---
+
Inside a file named `build.scm`:
```scheme
(define-module (build)
@@ -37,7 +41,7 @@ A plain build command didn't work:
```shell
$ guix build -L. my-hello
guix build: error: my-hello : paquet inconnu
-```
+```
But with an eval expression it did:
@@ -45,5 +49,3 @@ But with an eval expression it did:
$ guix build -L. -e '(@ (build) my-hello)'
# works
```
-
-FIXED: rename `name` on line 9 of the first snippet, and use `"my-hello"` instead of `"hello"`.