mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
44 lines
1 KiB
Nix
44 lines
1 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, libtool
|
|
, openssl
|
|
, expat
|
|
, pkg-config
|
|
, check
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libstrophe";
|
|
version = "0.10.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "strophe";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "11d341avsfr0z4lq15cy5dkmff6qpy91wkgzdpfdy31l27pa1g79";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [ openssl expat libtool check ];
|
|
|
|
dontDisableStatic = true;
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
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 licenses; [ gpl3Only mit ];
|
|
platforms = platforms.unix;
|
|
broken = stdenv.isDarwin;
|
|
maintainers = with maintainers; [ devhell flosse ];
|
|
};
|
|
}
|
|
|