aboutsummaryrefslogtreecommitdiff
path: root/src/xyz/euandreh/packages.scm
blob: 2262427cd1c240461778b01ba4299753519bfbac (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
(define-module (xyz euandreh packages)
  #:use-module (json)
  #:use-module ((ice-9 textual-ports) #:prefix textual-ports:)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (gnu packages)
  #:use-module (guix transformations)
  #:use-module (guix gexp)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module (guix utils)
  #:use-module (guix store)
  #:use-module (guix build-system gnu))

(define-public td-latest
  (package
    (name "td-latest")
    (version "c9d881f67918c6b098d868e0df6c8837632d0d93")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://euandreh.xyz/td.git/snapshot/td-"
                    version
                    ".tar.gz"))
              (sha256
               (base32
                "1m6s52rws3i7d8hvgfh5v7mwcwa7qwxrr8r453a8g6myql2h17x5"))))
    (build-system gnu-build-system)
    (arguments `(#:make-flags
                 (list (string-append "PREFIX=" %output))
                 #:phases
                 (modify-phases %standard-phases
                   (delete 'configure))))
    (synopsis (file-append source "/description"))
    (description (file-append source "/long-description"))
    (home-page (string-append "https://euandreh.xyz/" name "/"))
    (license license:agpl3+)))

(list
 td-latest)