diff options
author | Leo Prikler <leo.prikler@student.tugraz.at> | 2019-12-16 15:33:22 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-12-22 15:01:07 +0200 |
commit | f825476c858413828a163e4aa0a931d102419460 (patch) | |
tree | c21ece65e03d381f8cfc0b216d777a7344ca7a0c /gnu | |
parent | 26ba3f070af2d816172ec4ab86011b9885df5067 (diff) | |
download | patches-f825476c858413828a163e4aa0a931d102419460.tar patches-f825476c858413828a163e4aa0a931d102419460.tar.gz |
gnu: Add polari.
* gnu/packages/gnome.scm (polari): New package.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 8f27337992..2f772ee1b0 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -9037,3 +9037,58 @@ tile-matching game Mahjong. It features multiple board layouts, tile themes, and a high score table.") (home-page "https://wiki.gnome.org/Apps/Mahjongg") (license license:gpl2+))) + +(define-public polari + (package + (name "polari") + (version "3.32.2") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/polari/" + (version-major+minor version) + "/polari-" version ".tar.xz")) + (sha256 + (base32 + "0h0w9j3y067l911gpj446b3a2w1i2vzr1w2a7cz7i5rhn6qkf2sp")))) + (build-system meson-build-system) + (arguments + `(#:glib-or-gtk? #t + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'skip-gtk-update-icon-cache + (lambda _ + (substitute* "meson/meson-postinstall.sh" + (("gtk-update-icon-cache") (which "true"))) + #t)) + (add-after 'glib-or-gtk-wrap 'wrap-typelib + (lambda* (#:key outputs #:allow-other-keys) + (let ((prog (string-append (assoc-ref outputs "out") + "/bin/polari"))) + (wrap-program prog + `("GI_TYPELIB_PATH" = (,(getenv "GI_TYPELIB_PATH")))) + #t)))))) + (inputs + `(("glib" ,glib) + ("gsettings-desktop-schemas" ,gsettings-desktop-schemas) + ("gspell" ,gspell) + ("gtk+" ,gtk+) + ("gjs" ,gjs) + ("libsecret" ,libsecret) + ("libsoup" ,libsoup) + ("telepathy-glib" ,telepathy-glib) + ("telepathy-logger" ,telepathy-logger))) + (native-inputs + `(("glib:bin" ,glib "bin") + ("gobject-introspection" ,gobject-introspection) + ("intltool" ,intltool) + ("pkg-config" ,pkg-config) + ("yelp-tools" ,yelp-tools))) + (propagated-inputs + `(("telepathy-idle" ,telepathy-idle) + ("telepathy-mission-control" ,telepathy-mission-control))) + (synopsis "Simple IRC Client") + (description + "Polari is a simple Internet Relay Chat (IRC) client that is designed to +integrate seamlessly with the GNOME desktop.") + (home-page "https://wiki.gnome.org/Apps/Polari") + (license license:gpl2+))) |