8f9f6c7a22
Semi-automatic update. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 0.9.2 with grep in /nix/store/gc20iqfsfjj6c9ikgz06k3rk3597h22q-libstrophe-0.9.2 - found 0.9.2 in filename of file in /nix/store/gc20iqfsfjj6c9ikgz06k3rk3597h22q-libstrophe-0.9.2
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, automake, autoconf, libtool, openssl, expat, pkgconfig, check }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libstrophe-${version}";
|
|
version = "0.9.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "strophe";
|
|
repo = "libstrophe";
|
|
rev = version;
|
|
sha256 = "1milna92h8wzxax8ll362zvb70091nmfks5lmd105vk0478zraca";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ automake autoconf openssl expat libtool check ];
|
|
|
|
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 = http://strophe.im/libstrophe/;
|
|
license = with stdenv.lib.licenses; [gpl3 mit];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [devhell flosse];
|
|
};
|
|
}
|