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";
|
2020-09-25 21:23:40 +01:00
|
|
|
version = "0.10.0";
|
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;
|
2020-09-25 21:23:40 +01:00
|
|
|
sha256 = "1hizw695fw0cy88h1dpl9pvniapml2zw9yvxck8xvxbqfz54jwja";
|
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.
|
|
|
|
'';
|
2020-10-02 05:20:00 +01:00
|
|
|
homepage = "https://strophe.im/libstrophe/";
|
2019-10-23 17:28:54 +01:00
|
|
|
license = with stdenv.lib.licenses; [ gpl3 mit ];
|
2020-10-02 05:20:00 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2019-10-23 17:28:54 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ devhell flosse ];
|
2015-01-04 17:22:47 +00:00
|
|
|
};
|
|
|
|
}
|