mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: gobject-introspection: Make some cosmetic changes.
* gnu/packages/glib.scm (gobject-introspection): Make some cosmetic changes. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
c3c92c456b
commit
c3264f9e10
1 changed files with 23 additions and 22 deletions
|
@ -429,17 +429,20 @@ (define gobject-introspection
|
||||||
(package
|
(package
|
||||||
(name "gobject-introspection")
|
(name "gobject-introspection")
|
||||||
(version "1.62.0")
|
(version "1.62.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "mirror://gnome/sources/"
|
(method url-fetch)
|
||||||
"gobject-introspection/" (version-major+minor version)
|
(uri
|
||||||
"/gobject-introspection-" version ".tar.xz"))
|
(string-append "mirror://gnome/sources/"
|
||||||
(sha256
|
"gobject-introspection/" (version-major+minor version)
|
||||||
(base32 "18lhglg9v6y83lhqzyifc1z0wrlawzrhzzxx0a3h1g7xaz97xvmi"))
|
"/gobject-introspection-" version ".tar.xz"))
|
||||||
(patches (search-patches
|
(sha256
|
||||||
"gobject-introspection-cc.patch"
|
(base32 "18lhglg9v6y83lhqzyifc1z0wrlawzrhzzxx0a3h1g7xaz97xvmi"))
|
||||||
"gobject-introspection-girepository.patch"
|
(patches
|
||||||
"gobject-introspection-absolute-shlib-path.patch"))))
|
(search-patches
|
||||||
|
"gobject-introspection-cc.patch"
|
||||||
|
"gobject-introspection-girepository.patch"
|
||||||
|
"gobject-introspection-absolute-shlib-path.patch"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -450,25 +453,23 @@ (define gobject-introspection
|
||||||
(("#!@PYTHON_CMD@")
|
(("#!@PYTHON_CMD@")
|
||||||
(string-append "#!" (which "python3"))))
|
(string-append "#!" (which "python3"))))
|
||||||
#t)))))
|
#t)))))
|
||||||
|
(native-inputs
|
||||||
|
`(("glib" ,glib "bin")
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("bison" ,bison)
|
`(("bison" ,bison)
|
||||||
("flex" ,flex)
|
("flex" ,flex)
|
||||||
("glib" ,glib)
|
("glib" ,glib)
|
||||||
("python" ,python-wrapper)
|
("python" ,python-wrapper)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(native-inputs
|
|
||||||
`(("glib" ,glib "bin")
|
|
||||||
("pkg-config" ,pkg-config)))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(;; In practice, GIR users will need libffi when using
|
`(("libffi" ,libffi)))
|
||||||
;; gobject-introspection.
|
|
||||||
("libffi" ,libffi)))
|
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
(list (search-path-specification
|
(list
|
||||||
(variable "GI_TYPELIB_PATH")
|
(search-path-specification
|
||||||
(files '("lib/girepository-1.0")))))
|
(variable "GI_TYPELIB_PATH")
|
||||||
|
(files '("lib/girepository-1.0")))))
|
||||||
(search-paths native-search-paths)
|
(search-paths native-search-paths)
|
||||||
(home-page "https://wiki.gnome.org/GObjectIntrospection")
|
|
||||||
(synopsis "Generate interface introspection data for GObject libraries")
|
(synopsis "Generate interface introspection data for GObject libraries")
|
||||||
(description
|
(description
|
||||||
"GObject introspection is a middleware layer between C libraries (using
|
"GObject introspection is a middleware layer between C libraries (using
|
||||||
|
@ -476,7 +477,7 @@ (define gobject-introspection
|
||||||
and generate a metadata file, in addition to the actual native C library. Then
|
and generate a metadata file, in addition to the actual native C library. Then
|
||||||
at runtime, language bindings can read this metadata and automatically provide
|
at runtime, language bindings can read this metadata and automatically provide
|
||||||
bindings to call into the C library.")
|
bindings to call into the C library.")
|
||||||
; Some bits are distributed under the LGPL2+, others under the GPL2+
|
(home-page "https://wiki.gnome.org/GObjectIntrospection")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define intltool
|
(define intltool
|
||||||
|
|
Loading…
Reference in a new issue