11 stdenv.mkDerivation rec {
15 src = fetchFromGitHub {
19 sha256 = "sha256-jT4VIqqUldCj3Rsb5MC74WXYQyTqOZxzFADf47TBV8c=";
22 nativeBuildInputs = [ autoreconfHook pkg-config ];
23 buildInputs = [ openssl expat libtool check ];
25 dontDisableStatic = true;
30 description = "A simple, lightweight C library for writing XMPP clients";
32 libstrophe is a lightweight XMPP client library written in C. It has
33 minimal dependencies and is configurable for various environments. It
34 runs well on both Linux, Unix, and Windows based platforms.
36 homepage = "https://strophe.im/libstrophe/";
37 license = with licenses; [ gpl3Only mit ];
38 platforms = platforms.unix;
39 broken = stdenv.isDarwin;
40 maintainers = with maintainers; [ devhell flosse ];