about summary refs log tree commit diff
path: root/pkgs/by-name/he/hexchat/package.nix
blob: 1834fceda867d5d8b30d35221d750d78918d9f11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
  dbus-glib,
  desktop-file-utils,
  enchant2,
  fetchFromGitHub,
  gtk2,
  isocodes,
  lib,
  libcanberra-gtk2,
  libnotify,
  libproxy,
  lua,
  makeWrapper,
  meson,
  ninja,
  openssl,
  pciutils,
  perl,
  pkg-config,
  python3Packages,
  stdenv,
}:

stdenv.mkDerivation rec {
  pname = "hexchat";
  version = "2.16.2";

  src = fetchFromGitHub {
    owner = "hexchat";
    repo = "hexchat";
    rev = "v${version}";
    hash = "sha256-rgaXqXbBWlfSyz+CT0jRLyfGOR1cYYnRhEAu7AsaWus=";
  };

  #hexchat and hexchat-text loads enchant spell checking library at run time and so it needs to have route to the path
  postPatch = ''
    sed -i "s,libenchant-2.so.2,${enchant2}/lib/libenchant-2.so.2,g" src/fe-gtk/sexy-spell-entry.c
    sed -i "/flag.startswith('-I')/i if flag.contains('no-such-path')\ncontinue\nendif" plugins/perl/meson.build
    chmod +x meson_post_install.py
    for f in meson_post_install.py \
             plugins/perl/generate_header.py \
             plugins/python/generate_plugin.py \
             po/validate-textevent-translations \
             src/common/make-te.py
    do
      patchShebangs $f
    done
  '';

  mesonFlags = [
    "-Dwith-lua=lua"
    "-Dtext-frontend=true"
  ];

  nativeBuildInputs = [
    makeWrapper
    meson
    ninja
    pkg-config
  ];

  buildInputs = [
    dbus-glib
    desktop-file-utils
    gtk2
    isocodes
    libcanberra-gtk2
    libnotify
    libproxy
    lua
    openssl
    pciutils
    perl
    python3Packages.cffi
    python3Packages.python
    python3Packages.setuptools
  ];

  postInstall = ''
    wrapProgram $out/bin/hexchat --prefix PYTHONPATH : "$PYTHONPATH"
  '';

  meta = {
    description = "Popular and easy to use graphical IRC (chat) client";
    homepage = "https://hexchat.github.io/";
    license = lib.licenses.gpl2;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ romildo ];
  };
}