-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpantheon.scm
227 lines (222 loc) · 8.27 KB
/
pantheon.scm
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
(define-module (proposed pantheon)
#:use-module (contributed pantheon)
#:use-module (gnu packages cmake)
#:use-module (gnu packages databases)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages gettext)
#:use-module (gnu packages glib)
#:use-module (gnu packages gnome)
#:use-module (gnu packages gnupg)
#:use-module (gnu packages gperf)
#:use-module (gnu packages gtk)
#:use-module (gnu packages linux)
#:use-module (gnu packages package-management)
#:use-module (gnu packages pcre)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages tls)
#:use-module (gnu packages web)
#:use-module (gnu packages xml)
#:use-module (gnu packages)
#:use-module (guix build-system meson)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module ((guix licenses) :prefix license:)
#:use-module (guix packages)
#:use-module (guix utils))
(define-public sideload
(package
(name "sideload")
(version "1.1.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/elementary/sideload.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0mlc3nm2navzxm8k1rwpbw4w6mv30lmhqybm8jqxd4v8x7my73vq"))))
(build-system meson-build-system)
(arguments
`(#:glib-or-gtk? #t
#:configure-flags (list (string-append "-Dflatpak="
(assoc-ref %build-inputs "flatpak")
"/include"))
#:phases
(modify-phases %standard-phases
(add-before 'install 'set-environment-variables
(lambda _
;; Disable compiling schemas and updating desktop databases
(setenv "DESTDIR" "/")
#t))
(add-after 'install 'install-symlinks
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin/io.elementary.sideload"))
(link (string-append out "/bin/sideload")))
(symlink bin link)
#t))))))
(inputs
`(("flatpak" ,flatpak)
("granite" ,granite)
("gtk" ,gtk+)
("hicolor-icon-theme" ,hicolor-icon-theme)
("libostree" ,libostree)))
(propagated-inputs
;; Sideload needs these in the environment to fetch data securely from
;; Flatpak remotes.
`(("gnupg" ,gnupg)
("gpgme" ,gpgme)))
(native-inputs
`(("gettext" ,gettext-minimal)
("glib" ,glib)
("glib:bin" ,glib "bin")
("gobject-introspection" ,gobject-introspection)
("libgee" ,libgee)
("libxml2" ,libxml2)
("pkg-config" ,pkg-config)
("vala" ,vala)))
(home-page "https://github.com/elementary/sideload")
(synopsis "Graphical application to side-load Flatpaks")
(description "Sideload handles flatpakref files, like those you might find
on Flathub or another third-party website providing a Flatpak app for
download.")
(license license:gpl3+)))
(define-public appstream
(package
(name "appstream")
(version "0.12.11")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ximion/appstream.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0ma1nldpc01rr2x14q1ymv2fvf7qcs3wp8fdqsnd17qx0hrz483c"))))
(build-system meson-build-system)
(arguments
`(#:configure-flags
(list "-Dvapi=true"
"-Dstemming=false"
"-Dapidocs=false"
"-Dinstall-docs=false")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'disable-stemmer-inc-dirs
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(substitute* "meson.build"
(("include_directories\\(\\['\\/usr\\/include'\\]\\)")
"''")
(("subdir\\('docs\\/'\\)")
""))
(substitute* "data/meson.build"
(("\\/etc")
(string-append out "/etc")))
#t))))))
(inputs
`(("glib" ,glib)
("gperf" ,gperf)
("libsoup" ,libsoup)
("libxml2" ,libxml2)
("libxslt" ,libxslt)
("libyaml" ,libyaml)
("lmdb" ,lmdb)))
(native-inputs
`(("cmake" ,cmake)
("gettext" ,gettext-minimal)
("glib:bin" ,glib "bin") ; for glib-compile-resources
("gobject-introspection" ,gobject-introspection)
("pkg-config" ,pkg-config)
("vala" ,vala)))
(home-page "https://www.freedesktop.org/wiki/Distributions/AppStream/")
(synopsis "Provides the foundation to build software-center applications")
(description "AppStream is a cross-distribution effort for enhancing the way
we interact with the software repositories provided by GNU/Linux distributions
by standardizing software component metadata.")
(license license:gpl2)))
(define-public vte
(package
(name "vte")
(version "0.60.2")
(source (origin
(method url-fetch)
(uri (string-append "mirror://gnome/sources/vte/"
(version-major+minor version) "/"
"vte-" version ".tar.xz"))
(sha256
(base32
"19ccbw0yca78h5qcnm8claj4fg1pj68nj1fsjqqfpzhj7w72i81m"))))
(build-system meson-build-system)
(arguments
`(#:configure-flags
(list "-Dvapi=true"
"-D_systemd=false")))
(native-inputs
`(("pkg-config" ,pkg-config)
("intltool" ,intltool)
("vala" ,vala)
("gobject-introspection" ,gobject-introspection)
("glib" ,glib "bin") ; for glib-genmarshal, etc.
("gperf" ,gperf)
("xmllint" ,libxml2)))
(propagated-inputs
`(("gtk+" ,gtk+) ; required by vte-2.91.pc
("gnutls" ,gnutls) ; ditto
("pcre2" ,pcre2))) ; ditto
(home-page "https://www.gnome.org/")
(synopsis "Virtual Terminal Emulator")
(description
"VTE is a library (libvte) implementing a terminal emulator widget for
GTK+, and a minimal sample application (vte) using that. Vte is mainly used in
gnome-terminal, but can also be used to embed a console/terminal in games,
editors, IDEs, etc.")
(license license:lgpl2.1+)))
(define-public pantheon-terminal
(package
(name "pantheon-terminal")
(version "5.5.2")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/elementary/terminal.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"119iwmzbpkj4nmxinqfsh73lx23g8gbl6ha6wc4mc4fq9hpnc9c2"))))
(build-system meson-build-system)
(arguments
`(#:glib-or-gtk? #t
#:phases
(modify-phases %standard-phases
(add-after 'install 'install-symlinks
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(bin (string-append out "/bin/io.elementary.terminal"))
(link (string-append out "/bin/pantheon-terminal")))
(symlink bin link)))))))
(inputs
`(("granite" ,granite)
("gtk" ,gtk+)
("vte" ,vte)))
(native-inputs
`(("gettext" ,gettext-minimal)
("glib" ,glib)
("appstream" ,appstream)
("libgee" ,libgee)
("desktop-file-utils" ,desktop-file-utils) ; for update-desktop-database
("glib:bin" ,glib "bin") ; for glib-compile-resources
("pkg-config" ,pkg-config)
("gobject-introspection" ,gobject-introspection)
("vala" ,vala)))
(home-page "https://github.com/elementary/terminal")
(synopsis "Graphical terminal with opinionated design and thoughtful touches")
(description "A lightweight, beautiful, and simple terminal application.
Comes with sane defaults, browser-like tabs, sudo paste protection, smart
copy/paste, and little to no configuration.")
(license license:lgpl3)))
pantheon-terminal