gnu: libpeas: Update to 1.12.1, add 'pre-build phase.
* gnu/packages/gnome.scm (libpeas): Update to version 1.12.1 and add 'pre-build phase.
This commit is contained in:
parent
7ed6ee1e34
commit
58d32305b6
|
@ -3,6 +3,7 @@
|
||||||
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
|
;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
|
||||||
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
||||||
|
;;; Copyright © 2014, 2015 Federico Beffa <beffa@fbengineering.ch>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -427,7 +428,7 @@ some form of information without getting in the user's way.")
|
||||||
(define-public libpeas
|
(define-public libpeas
|
||||||
(package
|
(package
|
||||||
(name "libpeas")
|
(name "libpeas")
|
||||||
(version "1.9.0")
|
(version "1.12.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -436,7 +437,7 @@ some form of information without getting in the user's way.")
|
||||||
name "-" version ".tar.xz"))
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"13fzyzv6c0cfdj83z1s16lv8k997wpnzyzr0wfwcfkcmvz64g1q0"))))
|
"1mjjjjwphc83bjznmbsm7x0jg7ql261nys6qnl7mi0nkr4qvw476"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("atk" ,atk)
|
`(("atk" ,atk)
|
||||||
|
@ -449,6 +450,13 @@ some form of information without getting in the user's way.")
|
||||||
("glib:bin" ,glib "bin")
|
("glib:bin" ,glib "bin")
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("intltool" ,intltool)))
|
("intltool" ,intltool)))
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(alist-cons-before
|
||||||
|
'build 'pre-build
|
||||||
|
(lambda* _
|
||||||
|
(setenv "CC" "gcc"))
|
||||||
|
%standard-phases)))
|
||||||
(home-page "https://wiki.gnome.org/Libpeas")
|
(home-page "https://wiki.gnome.org/Libpeas")
|
||||||
(synopsis "GObject plugin system")
|
(synopsis "GObject plugin system")
|
||||||
(description
|
(description
|
||||||
|
@ -457,7 +465,6 @@ every application the chance to assume its own extensibility. It also has a
|
||||||
set of features including, but not limited to: multiple extension points; on
|
set of features including, but not limited to: multiple extension points; on
|
||||||
demand (lazy) programming language support for C, Python and JS; simplicity of
|
demand (lazy) programming language support for C, Python and JS; simplicity of
|
||||||
the API")
|
the API")
|
||||||
|
|
||||||
(license license:lgpl2.0+)))
|
(license license:lgpl2.0+)))
|
||||||
|
|
||||||
(define-public gtkglext
|
(define-public gtkglext
|
||||||
|
|
Loading…
Reference in New Issue