nixpkgs/pkgs/desktops/gnome-3/apps/polari/default.nix

44 lines
1.4 KiB
Nix
Raw Normal View History

2019-05-22 12:03:39 +01:00
{ stdenv, itstool, fetchurl, gdk-pixbuf, adwaita-icon-theme
, telepathy-glib, gjs, meson, ninja, gettext, telepathy-idle, libxml2, desktop-file-utils
, pkgconfig, gtk3, glib, libsecret, libsoup, gobject-introspection, appstream-glib
, gnome3, wrapGAppsHook, telepathy-logger, gspell, gsettings-desktop-schemas }:
2018-03-15 04:33:51 +00:00
let
pname = "polari";
2019-09-02 17:45:54 +01:00
version = "3.34.0";
2018-03-15 04:33:51 +00:00
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
2019-09-02 17:45:54 +01:00
sha256 = "09g2ylx2fwm55h28w0c03fxkdvlwmr2yc033m93c4acz1h30rjns";
};
propagatedUserEnvPkgs = [ telepathy-idle telepathy-logger ];
2018-03-15 04:33:51 +00:00
nativeBuildInputs = [
meson ninja pkgconfig itstool gettext wrapGAppsHook libxml2
desktop-file-utils gobject-introspection appstream-glib
2018-03-15 04:33:51 +00:00
];
2017-10-04 22:50:14 +01:00
2018-03-15 04:33:51 +00:00
buildInputs = [
gtk3 glib adwaita-icon-theme gsettings-desktop-schemas
2019-05-22 12:03:39 +01:00
telepathy-glib telepathy-logger gjs gspell gdk-pixbuf libsecret libsoup
2017-10-04 22:50:14 +01:00
];
2018-03-15 04:33:51 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "gnome3.${pname}";
};
};
meta = with stdenv.lib; {
homepage = https://wiki.gnome.org/Apps/Polari;
description = "IRC chat client designed to integrate with the GNOME desktop";
maintainers = gnome3.maintainers;
license = licenses.gpl2;
platforms = platforms.linux;
};
}