2014-02-11 10:55:59 +00:00
|
|
|
{stdenv, fetchgit, libgcrypt, autoconf, automake, libtool}:
|
2007-08-16 21:44:48 +00:00
|
|
|
|
2013-04-15 18:43:32 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-02-11 10:55:59 +00:00
|
|
|
name = "libotr-20130821-git-f0f8a2";
|
|
|
|
src = fetchgit {
|
|
|
|
url = "http://git.code.sf.net/p/otr/libotr";
|
|
|
|
rev = "f0f8a2";
|
|
|
|
sha256 = "08019r8bnk8f4yx6574jdz217p283ry7dmpqcad2d87yhkdmc3mm";
|
2007-08-16 21:44:48 +00:00
|
|
|
};
|
|
|
|
|
2013-04-15 18:43:32 +00:00
|
|
|
NIX_LDFLAGS = "-lssp";
|
|
|
|
|
2014-02-11 10:55:59 +00:00
|
|
|
propagatedBuildInputs = [ libgcrypt autoconf automake libtool ];
|
|
|
|
|
|
|
|
preConfigure = "autoreconf -vfi";
|
2013-04-15 18:43:32 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.cypherpunks.ca/otr/";
|
|
|
|
license = "LGPLv2.1";
|
|
|
|
description = "Library for Off-The-Record Messaging";
|
|
|
|
};
|
2007-08-16 21:44:48 +00:00
|
|
|
}
|