36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, automake, autoconf, libtool, openssl, expat, pkgconfig, check }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libstrophe";
|
|
version = "0.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "strophe";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1hizw695fw0cy88h1dpl9pvniapml2zw9yvxck8xvxbqfz54jwja";
|
|
};
|
|
|
|
nativeBuildInputs = [ automake autoconf pkgconfig libtool check ];
|
|
buildInputs = [ openssl expat ];
|
|
|
|
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 = "https://strophe.im/libstrophe/";
|
|
license = with stdenv.lib.licenses; [ gpl3 mit ];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with stdenv.lib.maintainers; [ devhell flosse ];
|
|
};
|
|
}
|