about summary refs log tree commit diff
path: root/pkgs/applications/networking/irc/weechat/scripts/colorize_nicks/default.nix
blob: 0b6d355797f3071473c28cccf1bda29427ac1bdc (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
{ stdenv, lib, fetchurl, weechat }:

stdenv.mkDerivation {
  pname = "weechat-colorize_nicks";
  version = "27";

  src = fetchurl {
    url = "https://github.com/weechat/scripts/raw/bc8a9051800779a036ba11689a277cd5f03657b2/python/colorize_nicks.py";
    sha256 = "0hiay88vvy171jiq6ahflm0ipb7sslfxwhmmm8psv6qk19rv2sxs";
  };

  dontUnpack = true;

  installPhase = ''
    mkdir -p $out/share
    cp $src $out/share/colorize_nicks.py
  '';

  passthru = {
    scripts = [ "colorize_nicks.py" ];
  };

  meta = with lib; {
    inherit (weechat.meta) platforms;
    description = "Use the weechat nick colors in the chat area";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ qyliss ];
  };
}