blob: dfc47aeeb23413c06e34551ac4c1b9a399e83d79 (
about) (
plain) (
blame)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
(define-module (xyz euandreh packages)
#:use-module (gnu packages guile)
#:use-module (gnu packages texinfo)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system gnu))
(define-public guile-heredoc-latest
(package
(name "guile-heredoc-latest")
(version "a3ac1e5d313d58f4ee7a81bb2166b1c293f74531")
(source (origin
(method url-fetch)
(uri (string-append
"https://euandreh.xyz/guile-heredoc.git/snapshot/guile-heredoc-"
version
".tar.gz"))
(sha256
(base32
"129yqkhqs7n60mz5qixdmk1qn21a3zmd852jwb7834jplnk2zksg"))))
(build-system gnu-build-system)
(inputs
(list guile-3.0
texinfo))
(arguments
`(#:make-flags (list (string-append "PREFIX=" %output))
#:phases
(modify-phases %standard-phases
(delete 'configure))))
(synopsis "FIXME: (file-append source \"/description\")")
(description "FIXME: (file-append source \"/long-description\")")
(home-page "https://euandreh.xyz/guile-heredoc/")
(license license:agpl3+)))
(define-public td-latest
(package
(name "td-latest")
(version "7a1d07c1051ff48f17c915f99e20b629ed0a6a70")
(source (origin
(method url-fetch)
(uri (string-append
"https://euandreh.xyz/td.git/snapshot/td-"
version
".tar.gz"))
(sha256
(base32
"1ixcfkalhhnxn7c4dshw42gd5bnwxb4c1dxkll50qyf9vdasqms8"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags (list (string-append "PREFIX=" %output))
#:phases
(modify-phases %standard-phases
(delete 'configure))))
(synopsis "FIXME: (file-append source \"/description\")")
(description "FIXME: (file-append source \"/long-description\")")
(home-page "https://euandreh.xyz/td/")
(license license:agpl3+)))
(list
td-latest
guile-heredoc-latest)
|