about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libstrophe/default.nix
blob: 0ef96f67505544fae6341f73d2955be8a3a17958 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, fetchFromGitHub, automake, autoconf, libtool, openssl, expat, pkgconfig, check }:

stdenv.mkDerivation rec {
  pname = "libstrophe";
  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];
  };
}