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 {
|
2014-09-07 02:47:24 +01:00
|
|
|
name = "libotr-4.0.0";
|
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";
|
|
|
|
sha256 = "1d4k0b7v4d3scwm858cmqr9c6xgd6ppla1vk4x2yg64q82a1k49z";
|
|
|
|
};
|
2014-02-11 10:55:59 +00:00
|
|
|
|
2014-09-07 02:47:24 +01:00
|
|
|
buildInputs = [ autoreconfHook ];
|
|
|
|
propagatedBuildInputs = [ libgcrypt ];
|
2013-04-15 19:43:32 +01:00
|
|
|
|
2014-09-07 02:47:24 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-04-15 19:43:32 +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
|
|
|
maintainers = with maintainers; [ wkennington ];
|
|
|
|
platforms = platforms.unix;
|
2013-04-15 19:43:32 +01:00
|
|
|
};
|
2007-08-16 22:44:48 +01:00
|
|
|
}
|