blob: 7ce1a9c0b36382c1c9226ebf63d646d4880b0f37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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")))
|