gnu: guile-gi: Update to 0.0.2.
* gnu/packages/guile-xyz.scm (guile-gi): Update to 0.0.2. [source]: Fetch using url-fetch. [arguments]: Add make flags to remove unexpectedly passing test from XFAIL_TESTS. [native-inputs]: Remove autoconf, automake, and texinfo.
This commit is contained in:
parent
d1a3a8e15e
commit
bb6c8f207b
|
@ -2247,43 +2247,40 @@ list of components. This module takes care of that for you.")
|
||||||
(license license:lgpl3+)))
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
(define-public guile-gi
|
(define-public guile-gi
|
||||||
(let ((commit "26e885219ae6b31a83766564a2ecfe8c4532346f")
|
(package
|
||||||
(revision "1"))
|
(name "guile-gi")
|
||||||
(package
|
(version "0.0.2")
|
||||||
(name "guile-gi")
|
(source (origin
|
||||||
(version (string-append "0.0.1-" revision "." (string-take commit 7)))
|
(method url-fetch)
|
||||||
(source (origin
|
(uri (string-append "http://lonelycactus.com/tarball/guile_gi-"
|
||||||
(method git-fetch)
|
version ".tar.gz"))
|
||||||
(uri (git-reference
|
(sha256
|
||||||
(url "https://github.com/spk121/guile-gi.git")
|
(base32
|
||||||
(commit commit)))
|
"0hs0viqzff7nzgcmyw721ima1jyymrlzrcycpgwrs6iprscxvqwn"))))
|
||||||
(file-name (string-append name "-" version))
|
(build-system gnu-build-system)
|
||||||
(sha256
|
(arguments
|
||||||
(base32
|
`(#:configure-flags '("--with-gnu-filesystem-hierarchy")
|
||||||
"1prbzhr4sqqihb34l6yfrz6sd8nghwd3q9wvbm36jnl2n3z2nxj8"))))
|
;; The atomic_int_set test does not actually fail.
|
||||||
(build-system gnu-build-system)
|
#:make-flags '("XFAIL_TESTS=strjoinv.scm")))
|
||||||
(native-inputs `(("autoconf" ,autoconf)
|
(native-inputs
|
||||||
("automake" ,automake)
|
`(("gettext" ,gnu-gettext)
|
||||||
("gettext" ,gnu-gettext)
|
("libtool" ,libtool)
|
||||||
("libtool" ,libtool)
|
("pkg-config" ,pkg-config)))
|
||||||
("pkg-config" ,pkg-config)
|
(propagated-inputs
|
||||||
("texinfo" ,texinfo)))
|
`(("glib" ,glib)
|
||||||
(propagated-inputs `(("glib" ,glib)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gssettings-desktop-schemas" ,gsettings-desktop-schemas)
|
||||||
("gssettings-desktop-schemas" ,gsettings-desktop-schemas)
|
("gtk+" ,gtk+)
|
||||||
("gtk+" ,gtk+)
|
("guile-lib" ,guile-lib)
|
||||||
("guile-lib" ,guile-lib)
|
("webkitgtk" ,webkitgtk)))
|
||||||
("webkitgtk" ,webkitgtk)))
|
(inputs `(("guile" ,guile-2.2)))
|
||||||
(inputs `(("guile" ,guile-2.2)))
|
(home-page "https://github.com/spk121/guile-gi")
|
||||||
(arguments
|
(synopsis "GObject bindings for Guile")
|
||||||
`(#:configure-flags '("--with-gnu-filesystem-hierarchy")))
|
(description
|
||||||
(home-page "https://github.com/spk121/guile-gi")
|
"Guile-GI is a library for Guile that allows using GObject-based
|
||||||
(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
|
libraries, such as GTK+3. Its README comes with the disclaimer: This is
|
||||||
pre-alpha code.")
|
pre-alpha code.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public guile-srfi-159
|
(define-public guile-srfi-159
|
||||||
(let ((commit "1bd98abda2ae4ef8f36761a167903e55c6bda7bb")
|
(let ((commit "1bd98abda2ae4ef8f36761a167903e55c6bda7bb")
|
||||||
|
|
Loading…
Reference in New Issue