diff options
author | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2024-01-17 21:13:03 -0500 |
---|---|---|
committer | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2024-01-21 09:59:05 -0500 |
commit | 6294af2472ff9798f46f01acf49b39f50f0375ec (patch) | |
tree | 1e60eb7544be952ee20fb1ad5cb4e728b4743b87 /hall.scm | |
parent | 6a0214be1c9ed4eceb059dfe514c2df429f2951f (diff) |
Update guix && guile-hall machinery
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"))))) |