24 lines
923 B
Nix
24 lines
923 B
Nix
{ stdenv, intltool, fetchurl, gdk_pixbuf, adwaita-icon-theme
|
|
, telepathy_glib, gjs, itstool, telepathy_idle, libxml2
|
|
, pkgconfig, gtk3, glib, librsvg, libsecret, libsoup
|
|
, gnome3, wrapGAppsHook, telepathy_logger, gspell }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
propagatedUserEnvPkgs = [ telepathy_idle telepathy_logger ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gtk3 glib intltool itstool adwaita-icon-theme wrapGAppsHook gnome3.gsettings_desktop_schemas
|
|
telepathy_glib telepathy_logger gjs gspell gdk_pixbuf librsvg libxml2 libsecret libsoup ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
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;
|
|
};
|
|
}
|