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>
This commit is contained in:
aszlig 2013-07-04 11:12:01 +02:00
parent b2311fbf3a
commit 1a9e99a8e4
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ 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)";
};
}

View File

@ -4953,6 +4953,8 @@ let
ming = callPackage ../development/libraries/ming { };
minmay = callPackage ../development/libraries/minmay { };
mkvtoolnix = callPackage ../applications/video/mkvtoolnix { };
mlt = callPackage ../development/libraries/mlt {