aboutsummaryrefslogtreecommitdiff
path: root/src/xyz/euandreh/packages.scm
blob: a20da1820564bf71c336e6b528a63efd708ab0f3 (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 "065435cdce609604e33b879b9be3e81ab89f3e7b")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://euandre.org/git/guile-heredoc/snapshot/guile-heredoc-"
                    version
                    ".tar.gz"))
              (sha256
               (base32
                "0cmfg7rj3malc2dplhdibcsj5kx41lfv5i3dxnwq203fd7xy50v5"))))
    (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://euandre.org/git/guile-heredoc/")
    (license license:agpl3+)))

(define-public td-latest
  (package
    (name "td-latest")
    (version "7a1d07c1051ff48f17c915f99e20b629ed0a6a70")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://euandre.org/git/td/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://euandre.org/git/td/")
    (license license:agpl3+)))

(list
 td-latest
 guile-heredoc-latest)