2024-09-19 14:19:46 +00:00
|
|
|
|
{
|
|
|
|
|
stdenv,
|
|
|
|
|
lib,
|
|
|
|
|
itstool,
|
|
|
|
|
fetchurl,
|
|
|
|
|
gdk-pixbuf,
|
|
|
|
|
telepathy-glib,
|
|
|
|
|
gjs,
|
|
|
|
|
meson,
|
|
|
|
|
ninja,
|
|
|
|
|
gettext,
|
|
|
|
|
telepathy-idle,
|
|
|
|
|
libxml2,
|
|
|
|
|
desktop-file-utils,
|
|
|
|
|
pkg-config,
|
|
|
|
|
gtk4,
|
|
|
|
|
tracker,
|
|
|
|
|
libadwaita,
|
|
|
|
|
gtk3,
|
|
|
|
|
glib,
|
|
|
|
|
libsecret,
|
|
|
|
|
libsoup_3,
|
|
|
|
|
webkitgtk_4_1,
|
|
|
|
|
gobject-introspection,
|
|
|
|
|
gnome,
|
|
|
|
|
wrapGAppsHook4,
|
|
|
|
|
gspell,
|
|
|
|
|
gsettings-desktop-schemas,
|
2022-03-30 09:31:56 +00:00
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2021-10-14 00:43:12 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
pname = "polari";
|
2024-05-15 15:35:15 +00:00
|
|
|
|
version = "46.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2024-09-19 14:19:46 +00:00
|
|
|
|
url = "mirror://gnome/sources/polari/${lib.versions.major version}/polari-${version}.tar.xz";
|
2024-05-15 15:35:15 +00:00
|
|
|
|
hash = "sha256-0rFwnjeRiSlPU9TvFfA/i8u76MUvD0FeYvfV8Aw2CjE=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
|
# Upstream runs the thumbnailer by passing it to gjs.
|
|
|
|
|
# If we wrap it in a shell script, gjs can no longer run it.
|
|
|
|
|
# Let’s change the code to run the script directly by making it executable and having gjs in shebang.
|
|
|
|
|
./make-thumbnailer-wrappable.patch
|
|
|
|
|
];
|
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
propagatedUserEnvPkgs = [ telepathy-idle ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2022-03-30 09:31:56 +00:00
|
|
|
|
meson
|
|
|
|
|
ninja
|
|
|
|
|
pkg-config
|
|
|
|
|
itstool
|
|
|
|
|
gettext
|
|
|
|
|
wrapGAppsHook4
|
|
|
|
|
libxml2
|
|
|
|
|
desktop-file-utils
|
|
|
|
|
gobject-introspection
|
2020-04-24 23:36:52 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
buildInputs = [
|
2022-03-30 09:31:56 +00:00
|
|
|
|
gtk4
|
2024-05-15 15:35:15 +00:00
|
|
|
|
tracker
|
2022-03-30 09:31:56 +00:00
|
|
|
|
libadwaita
|
|
|
|
|
gtk3 # for thumbnailer
|
|
|
|
|
glib
|
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
|
telepathy-glib
|
|
|
|
|
gjs
|
|
|
|
|
gspell
|
|
|
|
|
gdk-pixbuf
|
|
|
|
|
libsecret
|
2022-10-21 18:38:19 +00:00
|
|
|
|
libsoup_3
|
|
|
|
|
webkitgtk_4_1 # for thumbnailer
|
2020-04-24 23:36:52 +00:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
|
wrapGApp "$out/share/polari/thumbnailer.js"
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
passthru = {
|
2024-09-19 14:19:46 +00:00
|
|
|
|
updateScript = gnome.updateScript { packageName = "polari"; };
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
meta = with lib; {
|
2024-05-15 15:35:15 +00:00
|
|
|
|
homepage = "https://apps.gnome.org/Polari/";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
description = "IRC chat client designed to integrate with the GNOME desktop";
|
2024-04-21 15:54:59 +00:00
|
|
|
|
mainProgram = "polari";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
maintainers = teams.gnome.members;
|
2022-03-30 09:31:56 +00:00
|
|
|
|
license = licenses.gpl2Plus;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
platforms = platforms.linux;
|
|
|
|
|
};
|
|
|
|
|
}
|