mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: brasero: Update to 3.12.1, Add inputs.
* gnu/packages/gnome.scm (brasero): Update to 3.12.1. [inputs]: Add gobject-introspection, nettle, and totem-pl-parser.
This commit is contained in:
parent
b93c1d9dba
commit
e8627cd995
1 changed files with 17 additions and 5 deletions
|
@ -86,20 +86,30 @@ (define-module (gnu packages gnome)
|
||||||
(define-public brasero
|
(define-public brasero
|
||||||
(package
|
(package
|
||||||
(name "brasero")
|
(name "brasero")
|
||||||
(version "3.8.0")
|
(version "3.12.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/brasero/3.8/brasero-"
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
version ".tar.xz"))
|
(version-major+minor version) "/"
|
||||||
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1r5wjsrm47amdaf862ymkdlwlb636c45wg14x20hdr99c653d2nr"))))
|
"09vi2hyhl0bz7imv3ky6h7x5m3d546n968wcghydwrkvwm9ylpls"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags (list
|
||||||
|
(string-append "--with-girdir="
|
||||||
|
(assoc-ref %outputs "out")
|
||||||
|
"/share/gir-1.0")
|
||||||
|
(string-append "--with-typelibdir="
|
||||||
|
(assoc-ref %outputs "out")
|
||||||
|
"/lib/girepository-1.0"))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("hicolor-icon-theme" ,hicolor-icon-theme)))
|
`(("hicolor-icon-theme" ,hicolor-icon-theme)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("intltool" ,intltool)
|
`(("intltool" ,intltool)
|
||||||
("glib" ,glib "bin") ; glib-compile-schemas, etc.
|
("glib" ,glib "bin") ; glib-compile-schemas, etc.
|
||||||
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("glib" ,glib)
|
`(("glib" ,glib)
|
||||||
|
@ -112,7 +122,9 @@ (define-public brasero
|
||||||
("libice" ,libice)
|
("libice" ,libice)
|
||||||
("libnotify" ,libnotify)
|
("libnotify" ,libnotify)
|
||||||
("libsm" ,libsm)
|
("libsm" ,libsm)
|
||||||
("libxml2" ,libxml2)))
|
("libxml2" ,libxml2)
|
||||||
|
("nettle" ,nettle)
|
||||||
|
("totem-pl-parser" ,totem-pl-parser)))
|
||||||
(home-page "https://projects.gnome.org/brasero/")
|
(home-page "https://projects.gnome.org/brasero/")
|
||||||
(synopsis "CD/DVD burning tool for Gnome")
|
(synopsis "CD/DVD burning tool for Gnome")
|
||||||
(description "Brasero is an application to burn CD/DVD for the Gnome
|
(description "Brasero is an application to burn CD/DVD for the Gnome
|
||||||
|
|
Loading…
Reference in a new issue