diff options
author | Raghav Gururajan <raghavgururajan@disroot.org> | 2020-11-21 13:13:49 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2020-11-21 20:17:54 -0500 |
commit | d829c348f8a3c4de7e0dedeb4f96913357ae5294 (patch) | |
tree | 0163aefe80e65a376d2d0a564fab6e51925c2858 /gnu/packages | |
parent | 157173bf1d42b6b466464aa361fcbb38438cdc15 (diff) | |
download | guix-d829c348f8a3c4de7e0dedeb4f96913357ae5294.tar.gz |
gnu: dino: Make some cosmetic changes.
* gnu/packages/messaging.scm (dino): Make some cosmetic changes. Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/messaging.scm | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 1576447773..80e0298bff 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -923,19 +923,19 @@ Encryption to Gajim.") (package (name "dino") (version "0.2.0") - (outputs '("out" "debug")) (source (origin (method url-fetch) - (uri (string-append "https://github.com/dino/dino/releases/download/v" - version "/dino-" version ".tar.gz")) + (uri + (string-append "https://github.com/dino/dino/releases/download/v" + version "/dino-" version ".tar.gz")) (sha256 - (base32 - "0iigh7bkil6prf02dqcl6lmd89jxz685h8lqr3ni4x39zkcransn")))) + (base32 "0iigh7bkil6prf02dqcl6lmd89jxz685h8lqr3ni4x39zkcransn")))) (build-system cmake-build-system) + (outputs '("out" "debug")) (arguments `(#:tests? #f - #:parallel-build? #f ; not supported + #:parallel-build? #f ; not supported #:modules ((guix build cmake-build-system) ((guix build glib-or-gtk-build-system) #:prefix glib-or-gtk:) (guix build utils)) @@ -946,6 +946,11 @@ Encryption to Gajim.") (modify-phases %standard-phases (add-after 'install 'glib-or-gtk-wrap (assoc-ref glib-or-gtk:%standard-phases 'glib-or-gtk-wrap))))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("glib" ,glib "bin") + ("vala" ,vala) + ("gettext" ,gettext-minimal))) (inputs `(("libgee" ,libgee) ("libsignal-protocol-c" ,libsignal-protocol-c) @@ -957,15 +962,10 @@ Encryption to Gajim.") ("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 "Graphical Jabber (XMPP) client") (description "Dino is a Jabber (XMPP) client which aims to fit well into a graphical desktop environment like GNOME.") + (home-page "https://dino.im") (license license:gpl3+))) (define-public prosody |