-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpantheon.scm
202 lines (197 loc) · 7.32 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
(define-module (proposed 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 granite
(package
(name "granite")
(version "5.5.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/elementary/granite")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"13qfhq8xndikk6kmybibs6a4ddyp6mhvbsp2yy4qr7aiiyxf7mna"))))
(build-system meson-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'disable-icon-cache
(lambda _
(setenv "DESTDIR" "/")
#t)))))
(inputs
`(("glib" ,glib)
("gtk" ,gtk+)
("libgee" ,libgee)))
(native-inputs
`(("gettext" ,gettext-minimal)
("gobject-introspection" ,gobject-introspection)
("pkg-config" ,pkg-config)
("vala" ,vala)))
(home-page "https://github.com/elementary/granite")
(synopsis "Library that extends GTK with common widgets and utilities")
(description "Granite is a companion library for GTK+ and GLib. Among other
things, it provides complex widgets and convenience functions designed for use
in apps built for the Pantheon desktop.")
(license license:lgpl3+)))
(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