blob: 6792cd2abe94ae5fc971580082241a786d5aa8a6 (
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
|
(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 "90f2352c78b921c50f4c8547baa609c272248c30")
(source (origin
(method url-fetch)
(uri (string-append
"https://euandreh.xyz/td.git/snapshot/td-"
version
".tar.gz"))
(sha256
(base32
"06k5hpxhly8nlniqrr2z5z4v1v4wyazf207v8w3rr25wwmxwl93f"))))
(build-system gnu-build-system)
(inputs
`(("m4" ,(specification->package "m4"))))
(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://" name ".euandreh.xyz"))
(license license:agpl3+)))
(list
td-latest)
|