* [bug#28606] [PATCH] gnu: Add dino.
@ 2017-09-26 10:14 Ricardo Wurmus
2017-09-27 20:01 ` Ludovic Courtès
0 siblings, 1 reply; 3+ messages in thread
From: Ricardo Wurmus @ 2017-09-26 10:14 UTC (permalink / raw)
To: 28606; +Cc: Ricardo Wurmus
* gnu/packages/messaging.scm (dino): New variable.
---
gnu/packages/messaging.scm | 54 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 52ca4bef7..42820f0b9 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -533,6 +533,60 @@ transformation; audio and video conferences; file transfer; TLS, GPG and
end-to-end encryption support; XML console.")
(license license:gpl3)))
+(define-public dino
+ ;; The only release tarball is for version 0.0, but it is very old and fails
+ ;; to build.
+ (let ((commit "54a25fd926070a977138cec94908c55806e22f4a")
+ (revision "1"))
+ (package
+ (name "dino")
+ (version (string-append "0.0-" revision "." (string-take commit 9)))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/dino/dino.git")
+ (commit commit)))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32
+ "1m100wzr5xqaj3r4vprxj0961833wqk0p7z94nmjsf2f0s67v5r3"))))
+ (build-system cmake-build-system)
+ (arguments
+ `(#:tests? #f ; there are no tests
+ #:parallel-build? #f ; not supported
+ #:configure-flags
+ ;; FIXME: we disable the omemo plugin because it needs
+ ;; libsignal-protocol, for which we don't have a package yet.
+ '("-DDISABLED_PLUGINS=omemo")
+ #:modules ((guix build cmake-build-system)
+ ((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:)
+ (guix build utils))
+ #:imported-modules (,@%gnu-build-system-modules
+ (guix build cmake-build-system)
+ (guix build glib-or-gtk-build-system))
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'install 'glib-or-gtk-wrap
+ (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap)))))
+ (inputs
+ `(("libgee" ,libgee)
+ ("libsoup" ,libsoup)
+ ("sqlite" ,sqlite)
+ ("gpgme" ,gpgme)
+ ("gtk+" ,gtk+)
+ ("glib-networking" ,glib-networking)
+ ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)
+ ("glib" ,glib "bin")
+ ("vala" ,vala)
+ ("gettext" ,gettext-minimal)))
+ (home-page "https://dino.im")
+ (synopsis "Modern Jabber (XMPP) client")
+ (description "Dino is a Jabber (XMPP) client which aims to fit well into
+a modern desktop environment.")
+ (license license:gpl3+))))
+
(define-public prosody
(package
(name "prosody")
--
2.14.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [bug#28606] [PATCH] gnu: Add dino.
2017-09-26 10:14 [bug#28606] [PATCH] gnu: Add dino Ricardo Wurmus
@ 2017-09-27 20:01 ` Ludovic Courtès
2017-09-28 10:48 ` bug#28606: " Ricardo Wurmus
0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2017-09-27 20:01 UTC (permalink / raw)
To: Ricardo Wurmus; +Cc: 28606
Hello,
Ricardo Wurmus <rekado@elephly.net> skribis:
> * gnu/packages/messaging.scm (dino): New variable.
That looks alright to me!
> + ("vala" ,vala)
I found there’s a tendency to include Vala-generated C code (see
‘lxsession’ for instance.) It might be worth checking if that’s the
case here.
> + (synopsis "Modern Jabber (XMPP) client")
> + (description "Dino is a Jabber (XMPP) client which aims to fit well into
> +a modern desktop environment.")
Nitpick: I don’t like “modern”! :-) I think it’s very subjective and
unhelpful. Maybe something like “Graphical Jabber client”, and
something that says it’s well integrated with GNOME and whatnot?
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 3+ messages in thread
* bug#28606: [PATCH] gnu: Add dino.
2017-09-27 20:01 ` Ludovic Courtès
@ 2017-09-28 10:48 ` Ricardo Wurmus
0 siblings, 0 replies; 3+ messages in thread
From: Ricardo Wurmus @ 2017-09-28 10:48 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 28606-done
Ludovic Courtès <ludo@gnu.org> writes:
> Hello,
>
> Ricardo Wurmus <rekado@elephly.net> skribis:
>
>> * gnu/packages/messaging.scm (dino): New variable.
>
> That looks alright to me!
Thanks for the review!
>> + ("vala" ,vala)
>
> I found there’s a tendency to include Vala-generated C code (see
> ‘lxsession’ for instance.) It might be worth checking if that’s the
> case here.
It looks like there is no generated C code in the repository. There’s
only a handful of C files, and they look like source code.
>> + (synopsis "Modern Jabber (XMPP) client")
>> + (description "Dino is a Jabber (XMPP) client which aims to fit well into
>> +a modern desktop environment.")
>
> Nitpick: I don’t like “modern”! :-) I think it’s very subjective and
> unhelpful. Maybe something like “Graphical Jabber client”, and
> something that says it’s well integrated with GNOME and whatnot?
Hah, as a fellow user of a decidedly “un-modern” desktop environment I
agree :) I’ll change it to something more neutral-sounding.
--
Ricardo
GPG: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC
https://elephly.net
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-09-28 10:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-26 10:14 [bug#28606] [PATCH] gnu: Add dino Ricardo Wurmus
2017-09-27 20:01 ` Ludovic Courtès
2017-09-28 10:48 ` bug#28606: " Ricardo Wurmus
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).