mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: libzapojit: Update to 0.0.3-1.99d49ba. [security fixes]
This fixes CVE-2021-39360. * gnu/packages/gnome.scm (libzapojit): Update to 0.0.3-1.99d49ba. [source]: Switch to git-fetch. [native-inputs]: Add autoconf, autoconf-archive, automake, glib:bin and libtool. Change-Id: Ie0bd89d8a068dfad31565ad3c318c94ac1385c7b
This commit is contained in:
parent
915f807ce6
commit
c37b16a2ae
1 changed files with 27 additions and 21 deletions
|
@ -10591,28 +10591,34 @@ (define-public gsound
|
|||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public libzapojit
|
||||
(package
|
||||
(name "libzapojit")
|
||||
(version "0.0.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||
(version-major+minor version) "/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0zn3s7ryjc3k1abj4k55dr2na844l451nrg9s6cvnnhh569zj99x"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
(list gobject-introspection intltool pkg-config))
|
||||
(inputs
|
||||
(list gnome-online-accounts json-glib rest))
|
||||
(home-page "https://wiki.gnome.org/Projects/Zapojit")
|
||||
(synopsis "Library for accessing SkyDrive and Hotmail")
|
||||
(description
|
||||
"Libzapojit is a GLib-based library for accessing online service APIs of
|
||||
(let ((revision "1")
|
||||
(commit "99d49bac5edc4afdcac742a0a142908e405597b0"))
|
||||
(package
|
||||
(name "libzapojit")
|
||||
(version (git-version "0.0.3" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.gnome.org/Archive/libzapojit")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "12frqg925rmic3rf37h5vs48xdy3mfi4ip24v0bl73h5sxy8n828"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
(list autoconf autoconf-archive automake
|
||||
`(,glib "bin")
|
||||
gtk-doc gobject-introspection
|
||||
intltool libtool pkg-config))
|
||||
(inputs
|
||||
(list gnome-online-accounts json-glib rest))
|
||||
(home-page "https://wiki.gnome.org/Projects/Zapojit")
|
||||
(synopsis "Library for accessing SkyDrive and Hotmail")
|
||||
(description
|
||||
"Libzapojit is a GLib-based library for accessing online service APIs of
|
||||
Microsoft SkyDrive and Hotmail, using their REST protocols.")
|
||||
(license license:lgpl2.1+)))
|
||||
(license license:lgpl2.1+))))
|
||||
|
||||
(define-public gnome-clocks
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue