diff options
author | EuAndreh <eu@euandre.org> | 2020-12-15 09:43:51 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-12-15 09:43:51 -0300 |
commit | 4ca255dcff25df07f4a4af6bbe826a7d2af05823 (patch) | |
tree | 3f7e7bd20ef59d617a27602b3c689676567204a6 /_pastebins | |
parent | Guix pack pastebin: add FIXED comment (diff) | |
download | euandre.org-4ca255dcff25df07f4a4af6bbe826a7d2af05823.tar.gz euandre.org-4ca255dcff25df07f4a4af6bbe826a7d2af05823.tar.xz |
Pastebins: Move FIXED comments to beginning of file
Diffstat (limited to '')
-rw-r--r-- | _pastebins/2019-06-08-inconsistent-hash-of-buildgomodule.md | 4 | ||||
-rw-r--r-- | _pastebins/2020-11-27-guix-build-local-module.md | 8 |
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"`. |