diff options
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"))))) |