2014-09-07 02:47:24 +01:00
|
|
|
{ stdenv, fetchurl, libgcrypt, autoreconfHook }:
|
2007-08-16 22:44:48 +01:00
|
|
|
|
2013-04-15 19:43:32 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-03-09 23:13:08 +00:00
|
|
|
name = "libotr-4.1.1";
|
2013-04-15 19:43:32 +01:00
|
|
|
|
2014-09-07 02:47:24 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://otr.cypherpunks.ca/${name}.tar.gz";
|
2016-03-09 23:13:08 +00:00
|
|
|
sha256 = "1x8rliydhbibmzwdbyr7pd7n87m2jmxnqkpvaalnf4154hj1hfwb";
|
2014-09-07 02:47:24 +01:00
|
|
|
};
|
2014-02-11 10:55:59 +00:00
|
|
|
|
2019-09-23 18:03:13 +01:00
|
|
|
outputs = [ "bin" "out" "dev" ];
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2014-09-07 02:47:24 +01:00
|
|
|
propagatedBuildInputs = [ libgcrypt ];
|
2013-04-15 19:43:32 +01:00
|
|
|
|
2014-09-07 02:47:24 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01: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 02:47:24 +01:00
|
|
|
license = licenses.lgpl21;
|
2013-04-15 19:43:32 +01:00
|
|
|
description = "Library for Off-The-Record Messaging";
|
2014-09-07 02:47:24 +01:00
|
|
|
platforms = platforms.unix;
|
2013-04-15 19:43:32 +01:00
|
|
|
};
|
2007-08-16 22:44:48 +01:00
|
|
|
}
|