2007-08-17 01:16:42 +02:00
|
|
|
{ stdenv, fetchurl, libotr, pidgin} :
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-09-13 12:40:33 +02:00
|
|
|
name = "pidgin-otr-3.2.0";
|
2007-08-17 01:16:42 +02:00
|
|
|
src = fetchurl {
|
2008-09-13 12:40:33 +02:00
|
|
|
url = http://www.cypherpunks.ca/otr/pidgin-otr-3.2.0.tar.gz;
|
|
|
|
sha256 = "1cp6s565sid657lvmm7jrwl9wnk4ywsl8d9sp4iba36r0s5qaw08";
|
2007-08-17 01:16:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "OTR plugin for Pidgin IM.";
|
2008-01-30 20:49:42 +01:00
|
|
|
homepage = http://www.cypherpunks.ca/otr;
|
2007-08-17 01:16:42 +02:00
|
|
|
};
|
|
|
|
|
2007-08-17 11:31:09 +02:00
|
|
|
postInstall = "ln -s \$out/lib/pidgin \$out/share/pidgin-otr";
|
|
|
|
|
2007-08-17 01:16:42 +02:00
|
|
|
buildInputs = [libotr pidgin];
|
|
|
|
}
|