diff options
Diffstat (limited to 'hall.scm')
| -rw-r--r-- | hall.scm | 80 | 
1 files changed, 47 insertions, 33 deletions
@@ -1,34 +1,48 @@  (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 agpl3+) -  (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"))))) + (name "reading-heap") + (prefix "guile") + (version "0.1") + (author "Christopher R. Nelson") + (email "christopher.nelson@languidnights.com") + (copyright (2024)) + (synopsis "An application for managing your reading list.") + (description "Reading-Heap is a client-server application that manages a reading list +in a priority queue, so you always know what the next thing you should +read is, without having to devote your own brain power to sorting them.") + (home-page "https://projects.languidnights.com/reading-heap/") + (license agpl3+) + (dependencies `(("guile-hall" (hall common) ,guile-hall) +		 ("guix" ,guix) +		 ("guile-config" ,guile-config) +		 ("guile-json" ,guile-json-4) +		 ("guile-zmq" ,guile-simple-zmq) +		 ("zeromq" ,zeromq))) + (skip ()) + (files (libraries +         ((directory +           "reading-heap" +           ((scheme-file "zmq") +            (scheme-file "media") +            (scheme-file "heap") +            (unknown-type "hconfig.scm.hall"))) +          (scheme-file "reading-heap"))) +        (tests ()) +        (programs +         ((directory +           "scripts" +           ((in-file "rh-server") (in-file "rh-client"))))) +        (documentation +         ((text-file "AUTHORS") +	  (text-file "ChangeLog") +	  (directory "doc" ((texi-file "reading-heap"))) +          (text-file "COPYING") +          (text-file "HACKING") +	  (text-file "NEWS") +          (symlink "README" "README.org") +          (org-file "README"))) +        (infrastructure +         ((scheme-file "hall") +          (text-file ".gitignore") +          (scheme-file "guix") +	  (scheme-file "manifest") +	  (shell-file "autogen")))))  | 
