aboutsummaryrefslogtreecommitdiff
path: root/src/xyz/euandreh/packages.scm
blob: 18597ef62887058e17a48855c882837a730c4aa5 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
(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-latest
  (package
    (name "remembering-latest")
    (version "bc5da69a21422655bf87ebaf5cb3b4e359ef5b3c")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://git.euandreh.xyz/remembering/snapshot/remembering-"
                    version
                    ".tar.gz"))
              (sha256
               (base32
                "1wm2403p8pz5nvv1693ss5fv9madbzlclxkbsywm0cdmbrgy5s9w"))))
    (build-system gnu-build-system)
    (arguments `(#:make-flags
                 (list (string-append "CC=" ,(cc-for-target))
                       (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+)))

(define-public remembering
  (package
    (name "remembering")
    (version "0.2.1")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://git.euandreh.xyz/remembering/snapshot/remembering-"
                    version
                    ".tar.gz"))
              (sha256
               (base32
                "07q38ld6xy7qsz29crp2lpg695xpiz2ravmz0crlmy4iq1l4138f"))))
    (build-system gnu-build-system)
    (arguments `(#:make-flags
                 (list (string-append "CC=" ,(cc-for-target))
                       (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+)))

(define-public autoqemu-latest
  (package
    (name "autoqemu-latest")
    (version "3b8714e61a53d0050fc907e4f7d453ee13eca816")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://git.euandreh.xyz/autoqemu/snapshot/autoqemu-"
                    version
                    ".tar.gz"))
              (sha256
               (base32
                "1b2l8sllxgav089fdjcg8b2im9804v0w8s7f7nbcwdiclvlyij5z"))))
    (build-system gnu-build-system)
    (arguments `(#:make-flags
                 (list (string-append "CC=" ,(cc-for-target))
                       (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+)))

(define-public sharedc-latest
  (package
    (name "sharedc-latest")
    (version "7593a30ce9c4ed87387066468f956bd43d5e89d0")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://git.euandreh.xyz/sharedc/snapshot/sharedc-"
                    version
                    ".tar.gz"))
              (sha256
               (base32
                "09kgq5pj65lg3vmjmg8naxhrbnwrjzgz6s2ggfrg37qma4dl6haj"))))
    (build-system gnu-build-system)
    (arguments `(#:make-flags
                 (list (string-append "CC=" ,(cc-for-target))
                       (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+)))

(define-public fallible-latest
  (package
    (name "fallible-latest")
    (version "9b5eb601ff3ea5d6f07110f1a308479dd4f36149")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://git.euandreh.xyz/fallible/snapshot/fallible-"
                    version
                    ".tar.gz"))
              (sha256
               (base32
                "11vbapijzyn0xgihb6d9qiiq66wdjlg44qpibphmp0rncq1rclvf"))))
    (build-system gnu-build-system)
    (inputs
     `(("valgrind" ,(specification->package "valgrind"))))
    (arguments `(#:make-flags
                 (list (string-append "CC=" ,(cc-for-target))
                       (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+)))

(define-public fallible
  (package
    (name "fallible")
    (version "0.3.0")
    (source (origin
              (method url-fetch)
              (uri (string-append
                    "https://git.euandreh.xyz/fallible/snapshot/fallible-"
                    version
                    ".tar.gz"))
              (sha256
               (base32
                "0nhhzk1w0yxabwigrjwhabwrbxxzvrgd3ihydcbbgi2dkabmf8v3"))))
    (build-system gnu-build-system)
    (inputs
     `(("valgrind" ,(specification->package "valgrind"))))
    (arguments `(#:make-flags
                 (list (string-append "CC=" ,(cc-for-target))
                       (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
 remembering-latest
 remembering
 autoqemu-latest
 sharedc-latest
 fallible-latest
 fallible)