mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: cozy: Update to 1.2.0.
* gnu/packages/ebook.scm (cozy): Update to 1.2.0. [native-inputs]: Remove labels. [inputs]: Add bash-minimal to please 'guix lint'.
This commit is contained in:
parent
371b074171
commit
c054e025a3
1 changed files with 14 additions and 12 deletions
|
@ -6,7 +6,7 @@
|
|||
;;; Copyright © 2017 Roel Janssen <roel@gnu.org>
|
||||
;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||
;;; Copyright © 2020, 2021 Vinicius Monego <monego@posteo.net>
|
||||
;;; Copyright © 2020, 2021, 2022 Vinicius Monego <monego@posteo.net>
|
||||
;;; Copyright © 2020 Zheng Junjie <873216071@qq.com>
|
||||
;;; Copyright © 2021 la snesne <lasnesne@lagunposprasihopre.org>
|
||||
;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
|
||||
|
@ -39,6 +39,7 @@ (define-module (gnu packages ebook)
|
|||
#:use-module (guix build-system qt)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages curl)
|
||||
#:use-module (gnu packages databases)
|
||||
|
@ -515,7 +516,7 @@ (define-public fbreader
|
|||
(define-public cozy
|
||||
(package
|
||||
(name "cozy")
|
||||
(version "1.1.2")
|
||||
(version "1.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -524,7 +525,7 @@ (define-public cozy
|
|||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0hifzzhhf0ww6iar9gswjfndy3i54s6jc41zaazlx4scc7r6fhs0"))))
|
||||
(base32 "0igqf9b77i13sxlk4ziw549h379hmz1slrb3vvf8irk94gxabsaw"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
`(#:glib-or-gtk? #t
|
||||
|
@ -559,15 +560,16 @@ (define-public cozy
|
|||
`("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path))
|
||||
`("GUIX_PYTHONPATH" ":" prefix (,python-path ,pylib)))))))))
|
||||
(native-inputs
|
||||
`(("desktop-file-utils" ,desktop-file-utils)
|
||||
("gettext" ,gettext-minimal)
|
||||
("glib:bin" ,glib "bin")
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("gtk+:bin" ,gtk+ "bin")
|
||||
("pkg-config" ,pkg-config)
|
||||
("python" ,python-wrapper)))
|
||||
(list desktop-file-utils
|
||||
gettext-minimal
|
||||
`(,glib "bin")
|
||||
gobject-introspection
|
||||
`(,gtk+ "bin")
|
||||
pkg-config
|
||||
python-wrapper))
|
||||
(inputs
|
||||
(list file
|
||||
(list bash-minimal
|
||||
file
|
||||
granite
|
||||
gsettings-desktop-schemas
|
||||
gst-libav
|
||||
|
@ -608,7 +610,7 @@ (define-public cozy
|
|||
@item Mpris integration (Media keys & playback info for desktop environment)
|
||||
@end itemize")
|
||||
;; TODO: Unbundle python-inject.
|
||||
(license (list license:gpl3+ ;cozy
|
||||
(license (list license:gpl3+ ;cozy
|
||||
license:asl2.0)))) ;python-inject (bundled dependency)
|
||||
|
||||
(define-public xchm
|
||||
|
|
Loading…
Reference in a new issue