about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/pidgin-plugins/purple-plugin-pack/default.nix
blob: 388f633f3dabf003d7eb7b2f518f6f2d42dbe319 (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
{ lib
, stdenv
, fetchurl
, meson
, ninja
, pidgin
}:

stdenv.mkDerivation rec {
  pname = "purple-plugin-pack";
  version = "2.8.0";

  src = fetchurl {
    url = "mirror://sourceforge/pidgin/purple-plugin-pack-2.8.0.tar.xz";
    hash = "sha256-gszemnJRp1t+A6P5qSkBTY4AjBtvRuWGOPX0dto+JC0=";
  };

  postPatch = ''
    substituteInPlace meson.build \
      --replace "PURPLE.get_pkgconfig_variable('plugindir')" "'$out/lib/purple-2'" \
      --replace "PURPLE.get_pkgconfig_variable('datadir')" "'$out/share'" \
      --replace "PIDGIN.get_pkgconfig_variable('plugindir')" "'$out/lib/pidgin'" \
      --replace "PIDGIN.get_pkgconfig_variable('datadir')" "'$out/share'"
  '';

  nativeBuildInputs = [
    meson
    ninja
  ];

  buildInputs = [
    pidgin
  ];

  meta = with lib; {
    homepage = "https://keep.imfreedom.org/pidgin/purple-plugin-pack";
    description = "Collection of plugins for purple-based clients such as Pidgin";
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ bdimcheff ];
  };
}