aboutsummaryrefslogtreecommitdiffstats
path: root/examples-lib
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2025-08-11 07:47:14 -0400
committerGravatar Peter McGoron 2025-08-11 07:47:14 -0400
commitc57fab3dbf2953ae02b968dfd20bb7c2fe221ca6 (patch)
tree05aa9edd56b94980c1e9690f0460203eb0d52a7d /examples-lib
parentsagittarius (diff)
gauche
Diffstat (limited to 'examples-lib')
-rw-r--r--examples-lib/mcgoron/guix/mcgoron-hello-world.scm62
1 files changed, 0 insertions, 62 deletions
diff --git a/examples-lib/mcgoron/guix/mcgoron-hello-world.scm b/examples-lib/mcgoron/guix/mcgoron-hello-world.scm
deleted file mode 100644
index ebefb38..0000000
--- a/examples-lib/mcgoron/guix/mcgoron-hello-world.scm
+++ /dev/null
@@ -1,62 +0,0 @@
-#| Copyright (C) 2025 Peter McGoron
- |
- | This program is free software: you can redistribute it and/or modify it
- | under the terms of the GNU General Public License as published by the
- | Free Software Foundation, either version 3 of the License, or (at your
- | option) any later version.
- |
- | This program is distributed in the hope that it will be useful, but
- | WITHOUT ANY WARRANTY; without even the implied warranty of
- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- | General Public License for more details.
- |
- | You should have received a copy of the GNU General Public License along
- | with this program. If not, see <https://www.gnu.org/licenses/>.
- |#
-
-(define-module (mcgoron guix mcgoron-hello-world)
- #:use-module (guix packages)
- #:use-module (guix licenses)
- #:use-module (guix gexp)
- #:use-module (mcgoron guix chibi)
- #:use-module (mcgoron guix foment)
- #:use-module (mcgoron guix sagittarius))
-
-(define hello-world-path "./examples-src/hello-world")
-
-(define-public hello-world-chibi
- (package
- (name "hello-world-chibi")
- (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 chibi-scheme-build-system)
- (inputs (list chibi-scheme-with-path))))
-
-(define-public hello-world-foment
- (package
- (name "hello-world-foment")
- (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 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))))
-