summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix
blob: 2d70c583caba9a2c0f061f3f56b2d937e9a00f4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, libotr, pidgin} :

stdenv.mkDerivation {
  name = "pidgin-otr-3.1.0";
  src = fetchurl {
    url = http://www.cypherpunks.ca/otr/pidgin-otr-3.1.0.tar.gz;
    sha256 = "1l524qx5kh2gg68biazjyqiyz8qzxqwp07i0wzfaxgv33s9ni7s2";
  };

  meta = {
    description = "OTR plugin for Pidgin IM.";
    homepage = http://www.cypherpunks.ca/otr;
  };

  postInstall = "ln -s \$out/lib/pidgin \$out/share/pidgin-otr";

  buildInputs = [libotr pidgin];
}