diff options
author | Vinicius Monego <monego@posteo.net> | 2020-09-25 23:03:06 -0300 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-09-26 23:13:23 +0200 |
commit | 6854b44602698c5d7e408a109872ce8eb0ea648e (patch) | |
tree | dfdb13b38f2bcb32ce9cb393586ce40c2e199843 /gnu | |
parent | 6c5197226d5ff1da19c4d9866fc430592260c615 (diff) | |
download | guix-6854b44602698c5d7e408a109872ce8eb0ea648e.tar.gz guix-6854b44602698c5d7e408a109872ce8eb0ea648e.zip |
gnu: cozy: Update to 0.7.1.
* gnu/packages/ebook.scm (cozy): Update to 0.7.1.
[arguments]: Substitute only the Exec line in the desktop file.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ebook.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index 922a524346..82342d6a5f 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -415,7 +415,7 @@ following formats: (define-public cozy (package (name "cozy") - (version "0.6.19") + (version "0.7.1") (source (origin (method git-fetch) @@ -424,7 +424,7 @@ following formats: (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1f1qydjs8sz39yhlg9qdjf31vrsmdk2pxiimw4fzsy1k2zr5dr34")))) + (base32 "1ra3s3nh5vzs15zhwq61bx3k8yd8xzjmmvn3wamxb4bsb6kfb57f")))) (build-system meson-build-system) (arguments `(#:glib-or-gtk? #t @@ -433,7 +433,7 @@ following formats: (add-after 'unpack 'patch-desktop-file (lambda _ (substitute* "data/com.github.geigi.cozy.desktop.in" - (("com.github.geigi.cozy") "cozy")) + (("Exec=com.github.geigi.cozy") "Exec=cozy")) #t)) (add-after 'install 'patch-executable-name (lambda* (#:key outputs #:allow-other-keys) |