diff options
| author | 2025-08-08 13:39:27 -0400 | |
|---|---|---|
| committer | 2025-08-08 13:39:27 -0400 | |
| commit | 7f5e468de7ff066c5d7078f8130d9f44430b78db (patch) | |
| tree | f858d033fcc38b6bfc83d98e5b63953f81da5289 /examples-lib | |
| parent | reorganize under custom namespace (diff) | |
sagittarius
Diffstat (limited to 'examples-lib')
| -rw-r--r-- | examples-lib/mcgoron/guix/mcgoron-hello-world.scm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/examples-lib/mcgoron/guix/mcgoron-hello-world.scm b/examples-lib/mcgoron/guix/mcgoron-hello-world.scm index 7f54c55..ebefb38 100644 --- a/examples-lib/mcgoron/guix/mcgoron-hello-world.scm +++ b/examples-lib/mcgoron/guix/mcgoron-hello-world.scm @@ -19,7 +19,8 @@ #:use-module (guix licenses) #:use-module (guix gexp) #:use-module (mcgoron guix chibi) - #:use-module (mcgoron guix foment)) + #:use-module (mcgoron guix foment) + #:use-module (mcgoron guix sagittarius)) (define hello-world-path "./examples-src/hello-world") @@ -47,3 +48,15 @@ (build-system foment-build-system) (inputs (list foment)))) +(define-public hello-world-sagittarius + (package + (name "hello-world-sagittarius") + (version "1.0") + (synopsis "Prints hello world") + (description "Prints hello world") + (license asl2.0) + (home-page "https://example.com") + (source (local-file hello-world-path #:recursive? #t)) + (build-system sagittarius-build-system) + (inputs (list foment)))) + |
