blob: 28a38bca6e4eb152e6abca3175e44440a4f9a70c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
(hall-description
(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")))))
|