blob: e8cdc1d13731d25d33cc8ed5fe610f7b31187c8b (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
(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 remembering
(package
(name "remembering")
(version "793b782617b0667eefa938a836f24d8a5e087bb0")
(source (origin
(method url-fetch)
(uri (string-append
"https://git.euandreh.xyz/remembering/snapshot/remembering-"
version
".tar.gz"))
(sha256
(base32
"14gnjrzrknan1vjakqywlglz6pzhw69q2vs05bac8zyfhc9m0j80"))))
(build-system gnu-build-system)
(arguments `(#:make-flags (list (string-append "CC=" ,(cc-for-target)))))
(synopsis (file-append source "/description"))
(description (file-append source "/long-description"))
(home-page (string-append "https://" name ".euandreh.xyz"))
(license license:agpl3+)))
(define-public autoqemu
(package
(name "autoqemu")
(version "4d1a0b6314c4f6fcf31f80e608f6b03a316a7255")
(source (origin
(method url-fetch)
(uri (string-append
"https://git.euandreh.xyz/autoqemu/snapshot/autoqemu-"
version
".tar.gz"))
(sha256
(base32
"1ziszs481r5f03rwxf8vkgffkdbk46j3xj1qgaajsmlf3i11nl7x"))))
(build-system gnu-build-system)
(arguments `(#:make-flags (list (string-append "CC=" ,(cc-for-target)))))
(synopsis (file-append source "/description"))
(description (file-append source "/long-description"))
(home-page (string-append "https://" name ".euandreh.xyz"))
(license license:agpl3+)))
(define-public fallible
(package
(name "fallible")
(version "66a2ee41beaaffb9a9a6b521837c0967528845fa")
(source (origin
(method url-fetch)
(uri (string-append
"https://git.euandreh.xyz/fallible/snapshot/fallible-"
version
".tar.gz"))
(sha256
(base32
"0pmrn742pgvpnj51xyfaxjwz16h2kghgv5c0n8j689yyyiz6wp6s"))))
(build-system gnu-build-system)
(inputs
`(("valgrind" ,(specification->package "valgrind"))))
(arguments `(#:make-flags (list (string-append "CC=" ,(cc-for-target)))))
(synopsis (file-append source "/description"))
(description (file-append source "/long-description"))
(home-page (string-append "https://" name ".euandreh.xyz"))
(license license:agpl3+)))
(list
remembering
autoqemu
fallible)
|