diff options
author | Arun Isaac | 2022-03-29 00:43:53 +0530 |
---|---|---|
committer | Arun Isaac | 2022-03-29 00:43:53 +0530 |
commit | 7cbb463281d2aff8184f8c7689d1cfcb622de51c (patch) | |
tree | df41bd718503cb63e1b364974926017cf94d0e44 | |
parent | 60606a73f685337545c052d5a01ee3ed3d4c58e6 (diff) | |
download | guix-bioinformatics-7cbb463281d2aff8184f8c7689d1cfcb622de51c.tar.gz |
gn: hello-static: Set name to hello-static.
* gn/packages/riscv.scm (hello-static)[name]: Set to hello-static.
-rw-r--r-- | gn/packages/riscv.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gn/packages/riscv.scm b/gn/packages/riscv.scm index 2c4863a..4c40429 100644 --- a/gn/packages/riscv.scm +++ b/gn/packages/riscv.scm @@ -27,7 +27,9 @@ ;; Static hello, for testing (define hello-static - (static-package hello)) + (package + (inherit (static-package hello)) + (name "hello-static"))) ;; Improvements to riscv support have been merged since the last release. (define-public atomic-queue-git |