-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
guix.scm
38 lines (37 loc) · 1.33 KB
/
guix.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
(use-modules (guix build-system gnu)
(guix git-download)
((guix licenses) #:prefix license:)
(guix packages)
(gnu packages gettext)
(gnu packages glib))
(package
(name "gnome-shell-extension-customize-ibus")
(version "82")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/openSUSE/Customize-IBus.git")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "18dap3vr002jjj3k4143v02973vas2hq327gj44qcmxs8lzryhqk"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags
(list (string-append "VERSION=" ,version)
(string-append "INSTALLBASE=" (assoc-ref %outputs "out")
"/share/gnome-shell/extensions"))
#:tests? #f ; No test target
#:phases
(modify-phases %standard-phases
(delete 'bootstrap)
(delete 'configure))))
(native-inputs
`(("gettext" ,gettext-minimal)
("glib:bin" ,glib "bin")))
(home-page "https://github.com/openSUSE/Customize-IBus")
(synopsis "GNOME Shell Extension for IBus Customization")
(description "Customize IBus provides full customization of appearance,
behavior, system tray and input source indicator for IBus.")
(license license:gpl3+))