nixpkgs/pkgs/development/libraries/libstrophe/default.nix
devhell ffb565c5c0 libstrophe: 0.8.7 -> 0.8.8
From the Changelog:
  - XML namespace support
  - XEP-0114 support
2015-10-25 17:00:45 +00:00

35 lines
1 KiB
Nix

{ stdenv, fetchFromGitHub, automake, autoconf, libtool, openssl, expat, pkgconfig, check }:
stdenv.mkDerivation rec {
name = "libstrophe-${version}";
version = "0.8.8";
src = fetchFromGitHub {
owner = "strophe";
repo = "libstrophe";
rev = version;
sha256 = "1xzyqqf99r0jfd0g3v0zwc68sac6y25v1d4m365zpc14l02midis";
};
buildInputs = [ automake autoconf openssl expat libtool pkgconfig check ];
dontDisableStatic = true;
preConfigure = "mkdir m4 && sh bootstrap.sh";
doCheck = true;
meta = {
description = "A simple, lightweight C library for writing XMPP clients";
longDescription = ''
libstrophe is a lightweight XMPP client library written in C. It has
minimal dependencies and is configurable for various environments. It
runs well on both Linux, Unix, and Windows based platforms.
'';
homepage = http://strophe.im/libstrophe/;
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.devhell ];
};
}