2015-01-04 17:22:47 +00:00
|
|
|
{ stdenv, fetchFromGitHub, automake, autoconf, libtool, openssl, expat, pkgconfig, check }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libstrophe";
|
2019-10-23 17:28:54 +01:00
|
|
|
version = "0.9.3";
|
2015-01-04 17:22:47 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "strophe";
|
2019-10-23 17:28:54 +01:00
|
|
|
repo = pname;
|
2015-01-04 17:22:47 +00:00
|
|
|
rev = version;
|
2019-10-23 17:28:54 +01:00
|
|
|
sha256 = "1g1l0w9z9hdy5ncdvd9097gi7k7783did6py5h9camlpb2fnk5mk";
|
2015-01-04 17:22:47 +00:00
|
|
|
};
|
|
|
|
|
2019-10-23 17:28:54 +01:00
|
|
|
nativeBuildInputs = [ automake autoconf pkgconfig libtool check ];
|
|
|
|
buildInputs = [ openssl expat ];
|
2015-01-04 17:22:47 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
2019-10-23 17:28:54 +01:00
|
|
|
homepage = "http://strophe.im/libstrophe/";
|
|
|
|
license = with stdenv.lib.licenses; [ gpl3 mit ];
|
2015-01-04 22:37:16 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2019-10-23 17:28:54 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ devhell flosse ];
|
2015-01-04 17:22:47 +00:00
|
|
|
};
|
|
|
|
}
|