-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathguix.scm
124 lines (118 loc) · 4.41 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
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
;;; Guile-GI --- GObject bindings for Guile.
;;; Copyright (C) 2019 Jan Nieuwenhuizen <[email protected]>
;;;
;;; This file is part of Guile-GI.
;;;
;;; Guile-GI is free software: you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation, either version 3 of the License, or
;;; (at your option) any later version.
;;;
;;; Guile-GI is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with Guile-GI. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; GNU Guix development package. To build and play, run:
;;
;; guix environment --ad-hoc -l guix.scm guile
;;
;; To build and install, run:
;;
;; guix package -f guix.scm
;;
;; To build it, but not install it, run:
;;
;; guix build -f guix.scm
;;
;; To use as the basis for a development environment, run:
;;
;; guix environment -l guix.scm
;;
;;; Code:
(use-modules (guix packages)
(guix licenses)
(guix git-download)
(guix gexp)
(guix build-system gnu)
(guix build-system glib-or-gtk)
(guix utils)
(gnu packages)
(gnu packages autotools)
(gnu packages gettext)
(gnu packages glib)
(gnu packages gnome)
(gnu packages guile)
(gnu packages pkg-config)
(gnu packages texinfo)
(ice-9 match))
(define %source-dir (dirname (current-filename)))
(define guile-gi
(package
(name "guile-gi")
(version "git")
(source (local-file %source-dir
#:recursive? #t
#:select? (git-predicate %source-dir)))
(build-system glib-or-gtk-build-system)
(native-inputs `(("autoconf" ,autoconf)
("automake" ,automake)
("gettext" ,gnu-gettext)
("glib:bin" ,glib "bin")
("libtool" ,libtool)
("pkg-config" ,pkg-config)
("texinfo" ,texinfo)))
(inputs `(("guile" ,guile-2.2)
("glib" ,glib)))
(propagated-inputs `(("gobject-introspection" ,gobject-introspection)))
(arguments
`(#:configure-flags '("--with-gnu-filesystem-hierarchy"
"--enable-hardening")
#:modules ((guix build glib-or-gtk-build-system)
(guix build utils)
(ice-9 popen)
(ice-9 rdelim))
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-references-to-extension
(lambda* (#:key outputs #:allow-other-keys)
(let ((effective (read-line
(open-pipe* OPEN_READ
"guile" "-c"
"(display (effective-version))"))))
(substitute* (find-files "module" ".*\\.scm")
(("\\(load-extension \"libguile-gi\" \"(.*)\"\\)" m arg)
(format #f "~s"
`(load-extension
(format #f "~alibguile-gi"
(if (getenv "GUILE_GI_UNINSTALLED")
""
,(format #f "~a/lib/guile/~a/extensions/"
(assoc-ref outputs "out")
effective)))
,arg)))))
(setenv "GUILE_GI_UNINSTALLED" "1")
#t)))))
(home-page "https://github.com/spk121/guile-gi")
(synopsis "GObject bindings for Guile")
(description
"Guile-GI is a library for Guile that allows using GObject-based
libraries, such as GTK+3. Its README comes with the disclaimer: This
is alpha code.")
(license gpl3+)))
(define guile-next-gi
(package
(inherit guile-gi)
(name "guile-next-gi")
(inputs `(("guile" ,guile-3.0)
("glib" ,glib)))))
(case (and (file-exists? ".guile-version")
(call-with-input-file ".guile-version" read))
((2 2.0 guile) guile-gi)
((3 3.0 guile-next) guile-next-gi)
(else
(list guile-gi guile-next-gi)))