diff options
author | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2023-06-18 20:08:03 -0400 |
---|---|---|
committer | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2023-06-18 20:08:03 -0400 |
commit | be36a5111c30af9d4dcd6a74c5fa1c43763e598e (patch) | |
tree | 9b261f95d768f8c1c94674d166010f51c61716a0 /hall.scm |
Initial Import
Diffstat (limited to 'hall.scm')
-rw-r--r-- | hall.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/hall.scm b/hall.scm new file mode 100644 index 0000000..c3fe3d1 --- /dev/null +++ b/hall.scm @@ -0,0 +1,34 @@ +(hall-description + (name "reading-heap") + (prefix "") + (version "0.1") + (author "Christopher R. Nelson") + (email "christopher.nelson@languidnights.com") + (copyright (2023)) + (synopsis "") + (description "") + (home-page "") + (license gpl3+) + (dependencies `()) + (skip ()) + (features + ((guix #f) + (native-language-support #f) + (licensing #f))) + (files (libraries + ((scheme-file "reading-heap") + (directory + "reading-heap" + ((unknown-type "hconfig.scm.hall"))))) + (tests ((directory "tests" ()))) + (programs ((directory "scripts" ()))) + (documentation + ((org-file "README") + (symlink "README" "README.org") + (text-file "HACKING") + (text-file "COPYING") + (directory "doc" ((texi-file "reading-heap"))))) + (infrastructure + ((scheme-file "guix") + (text-file ".gitignore") + (scheme-file "hall"))))) |