-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpantheon.scm
166 lines (162 loc) · 6.09 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
(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 pantheon)
#: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 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