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