nixpkgs/pkgs/development/libraries/minmay/default.nix
aszlig 1a9e99a8e4
Add new package minmay in version 1.0.0.
This is a fork of the iksemel library, which is no longer maintained and is
highly broken in regards to TLS support (even in the release versions).

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2013-07-08 14:27:43 +02:00

20 lines
498 B
Nix

{ stdenv, fetchurl, cmake, openssl }:
stdenv.mkDerivation rec {
name = "minmay-${version}";
version = "1.0.0";
src = fetchurl {
url = "https://github.com/mazhe/minmay/archive/1.0.0.tar.gz";
sha256 = "1amycxvhbd0lv6j5zsvxiwrx29jvndcy856j3b3bisys24h95zw2";
};
buildInputs = [ cmake openssl ];
meta = {
homepage = "https://github.com/mazhe/minmay";
license = stdenv.lib.licenses.lgpl21Plus;
description = "An XMPP library (forked from the iksemel project)";
};
}