summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-latex/default.nix
blob: 586ce26e8c959d3fca6cd7590aaafdc723da3b57 (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
{ stdenv, fetchurl, pkgconfig, pidgin, texLive, imagemagick, glib, gtk }:

let version = "1.5.0";
in
stdenv.mkDerivation {
  name = "pidgin-latex-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/pidgin-latex/pidgin-latex_${version}.tar.bz2";
    sha256 = "9c850aee90d7e59de834f83e09fa6e3e51b123f06e265ead70957608ada95441";
  };

  nativeBuildInputs = [pkgconfig];
  buildInputs = [gtk glib pidgin];
  makeFlags = "PREFIX=$(out)";

  postPatch = ''
    sed -e 's/-Wl,-soname//' -i Makefile
  '';

  passthru = {
    wrapArgs = "--prefix PATH ':' ${texLive}/bin:${imagemagick}/bin";
  };

  meta = with stdenv.lib; {
    homepage = http://sourceforge.net/projects/pidgin-latex/;
    description = "LaTeX rendering plugin for Pidgin IM";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = maintainers.abbradar;
  };
}