diff options
author | Arun Isaac | 2022-04-01 15:30:16 +0530 |
---|---|---|
committer | Arun Isaac | 2022-04-01 15:30:16 +0530 |
commit | 05c78cacdd65d81344ab7ab4d0392d5fa67d0777 (patch) | |
tree | ce8ac4b66c321e41386d5c9b6f20e6b421cf3a55 /gn/packages/static.scm | |
parent | 7f1facbadde5e31fcbde36a70c4cb29d281f216f (diff) | |
download | guix-bioinformatics-05c78cacdd65d81344ab7ab4d0392d5fa67d0777.tar.gz |
gn: hello-static: Move to gn/packages/static.scm.
* gn/packages/riscv.scm: Do not import (gnu packages base), (guix
packages) and (guix build-system gnu).
(hello-static): Move to gn/packages/static.scm.
* gn/packages/static.scm: New file.
Diffstat (limited to 'gn/packages/static.scm')
-rw-r--r-- | gn/packages/static.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gn/packages/static.scm b/gn/packages/static.scm new file mode 100644 index 0000000..7ce1a9c --- /dev/null +++ b/gn/packages/static.scm @@ -0,0 +1,21 @@ +;;; +;;; Commentary: +;;; +;;; This module contains statically linked executables meant for use +;;; with spike and gem5. +;;; + +;;; +;;; Code: +;;; + +(define-module (gn packages static) + #:use-module (gnu packages base) + #:use-module (guix build-system gnu) + #:use-module (guix packages)) + +;; Static hello, for testing +(define-public hello-static + (package + (inherit (static-package hello)) + (name "hello-static"))) |