2014-09-07 01:47:24 +00:00
|
|
|
{ stdenv, fetchurl, libgcrypt, autoreconfHook }:
|
2007-08-16 21:44:48 +00:00
|
|
|
|
2013-04-15 18:43:32 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-11-03 01:21:48 +00:00
|
|
|
name = "libotr-4.1.0";
|
2013-04-15 18:43:32 +00:00
|
|
|
|
2014-09-07 01:47:24 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://otr.cypherpunks.ca/${name}.tar.gz";
|
2014-11-03 01:21:48 +00:00
|
|
|
sha256 = "0c6rkh58s6wqzcrpccwdik5qs91qj6dgd60a340d72gc80cqknsg";
|
2014-09-07 01:47:24 +00:00
|
|
|
};
|
2014-02-11 10:55:59 +00:00
|
|
|
|
2014-09-07 01:47:24 +00:00
|
|
|
buildInputs = [ autoreconfHook ];
|
|
|
|
propagatedBuildInputs = [ libgcrypt ];
|
2013-04-15 18:43:32 +00:00
|
|
|
|
2014-09-07 01:47:24 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-04-15 18:43:32 +00:00
|
|
|
homepage = "http://www.cypherpunks.ca/otr/";
|
2014-02-14 07:34:30 +00:00
|
|
|
repositories.git = git://git.code.sf.net/p/otr/libotr;
|
2014-09-07 01:47:24 +00:00
|
|
|
license = licenses.lgpl21;
|
2013-04-15 18:43:32 +00:00
|
|
|
description = "Library for Off-The-Record Messaging";
|
2014-09-07 01:47:24 +00:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
platforms = platforms.unix;
|
2013-04-15 18:43:32 +00:00
|
|
|
};
|
2007-08-16 21:44:48 +00:00
|
|
|
}
|