nixpkgs/pkgs/development/libraries/libotr/default.nix
William A. Kennington III 4501ef66b1 libotr: 4.0.0 -> 4.1.0
2014-11-02 17:21:48 -08:00

23 lines
646 B
Nix

{ stdenv, fetchurl, libgcrypt, autoreconfHook }:
stdenv.mkDerivation rec {
name = "libotr-4.1.0";
src = fetchurl {
url = "https://otr.cypherpunks.ca/${name}.tar.gz";
sha256 = "0c6rkh58s6wqzcrpccwdik5qs91qj6dgd60a340d72gc80cqknsg";
};
buildInputs = [ autoreconfHook ];
propagatedBuildInputs = [ libgcrypt ];
meta = with stdenv.lib; {
homepage = "http://www.cypherpunks.ca/otr/";
repositories.git = git://git.code.sf.net/p/otr/libotr;
license = licenses.lgpl21;
description = "Library for Off-The-Record Messaging";
maintainers = with maintainers; [ wkennington ];
platforms = platforms.unix;
};
}