3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/gnome-3/apps/polari/default.nix

44 lines
1.3 KiB
Nix
Raw Normal View History

2017-10-04 22:50:14 +01:00
{ stdenv, itstool, fetchurl, fetchpatch, gdk_pixbuf, adwaita-icon-theme
, telepathy-glib, gjs, meson, ninja, gettext, telepathy-idle, libxml2, desktop-file-utils
2017-10-04 22:50:14 +01:00
, pkgconfig, gtk3, glib, libsecret, libsoup, gobjectIntrospection, appstream-glib
, gnome3, wrapGAppsHook, telepathy-logger, gspell }:
2018-03-15 04:33:51 +00:00
let
pname = "polari";
2018-03-13 01:03:18 +00:00
version = "3.28.0";
2018-03-15 04:33:51 +00:00
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
2018-03-15 04:33:51 +00:00
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
2018-03-13 01:03:18 +00:00
sha256 = "08zgdqrnxl752nv0gac1k7wvjd4j7h5n4c0flrq7q337p40k3dd5";
};
propagatedUserEnvPkgs = [ telepathy-idle telepathy-logger ];
2018-03-15 04:33:51 +00:00
nativeBuildInputs = [
meson ninja pkgconfig itstool gettext wrapGAppsHook libxml2
desktop-file-utils gobjectIntrospection appstream-glib
];
2017-10-04 22:50:14 +01:00
2018-03-15 04:33:51 +00:00
buildInputs = [
gtk3 glib adwaita-icon-theme gnome3.gsettings-desktop-schemas
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;
};
}