me
/
guix
Archived
1
0
Fork 0

gnu: gobby: Update to 0.6.0.

This fixes a build failure due to our libinfinite being too recent for
gobby 0.5.0.

* gnu/packages/gobby.scm (gobby): Update to 0.6.0.
[build-system]: Change to glib-or-gtk-build-system which helps to find
glib-compile-schemas.
[native-inputs]: Add itstool.
[inputs]: Replace gtkmm-2 with gtkmm and gtksourceview-2 with
gtksourceview-3.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Felix Gruber 2021-09-12 12:30:47 +00:00 committed by Efraim Flashner
parent 27d2e828b9
commit 3cea6f4009
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 9 additions and 6 deletions

View File

@ -3,6 +3,7 @@
;;; Copyright © 2017, 2019 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@ -24,6 +25,7 @@
#:use-module (guix download)
#:use-module (guix utils)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system glib-or-gtk)
#:use-module (guix build-system gnu)
#:use-module (gnu packages)
#:use-module (gnu packages glib)
@ -143,7 +145,7 @@ connect to a server running the old 0.4 protocol.")
(define-public gobby
(package
(name "gobby")
(version "0.5.0")
(version "0.6.0")
(source (origin
(method url-fetch)
(uri (string-append "http://releases.0x539.de/gobby/gobby-"
@ -151,16 +153,17 @@ connect to a server running the old 0.4 protocol.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"165x0r668ma5blziisvbr8qig3jw9hf7i6w8r7wwvz3wsac3bswc"))))
(build-system gnu-build-system)
"1p2wbnchxy2wdzk19p7bxfpbq5zawa0l500na57jp8jgk3qz7czx"))))
(build-system glib-or-gtk-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)
("intltool" ,intltool)))
("intltool" ,intltool)
("itstool" ,itstool)))
(inputs
`(("gnutls" ,gnutls)
("gsasl" ,gsasl)
("gtkmm-2" ,gtkmm-2)
("gtksourceview-2" ,gtksourceview-2)
("gtkmm" ,gtkmm)
("gtksourceview" ,gtksourceview-3)
("libinfinity" ,libinfinity)
("libxml++-2" ,libxml++-2)))
(arguments