mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 00:26:33 +01:00
gnu: Add perl-cairo-gobject.
* gnu/packages/gtk.scm (perl-cairo-gobject): New variable.
This commit is contained in:
parent
ceb025b42b
commit
eb6f3941d7
1 changed files with 25 additions and 0 deletions
|
@ -80,6 +80,7 @@ (define-module (gnu packages gtk)
|
|||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages pdf)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages perl-check)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages pretty-print)
|
||||
#:use-module (gnu packages python)
|
||||
|
@ -1595,6 +1596,30 @@ (define-public perl-cairo
|
|||
produces identical output on all those targets.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public perl-cairo-gobject
|
||||
(package
|
||||
(name "perl-cairo-gobject")
|
||||
(version "1.005")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
|
||||
"Cairo-GObject-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0l2wcz77ndmbgvxx34gdm919a3dxh9fixqr47p50n78ysx2692cd"))))
|
||||
(build-system perl-build-system)
|
||||
(native-inputs
|
||||
`(("perl-extutils-depends" ,perl-extutils-depends)
|
||||
("perl-extutils-pkgconfig" ,perl-extutils-pkgconfig)))
|
||||
(propagated-inputs
|
||||
`(("perl-cairo" ,perl-cairo)
|
||||
("perl-glib" ,perl-glib)))
|
||||
(home-page "https://metacpan.org/dist/Cairo-GObject")
|
||||
(synopsis "Integrate Cairo into the Glib type system")
|
||||
(description "Cairo::GObject registers Cairo's types with Glib's type systems,
|
||||
so that they can be used normally in signals and properties.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public perl-gtk2
|
||||
(package
|
||||
(name "perl-gtk2")
|
||||
|
|
Loading…
Reference in a new issue