summary refs log tree commit diff
path: root/pkgs/development/libraries/loudmouth/default.nix
blob: e014e38c3f97aee6d524340b094b180867c1ecfb (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
{ stdenv, fetchurl, openssl, libidn, glib, pkgconfig, zlib }:

stdenv.mkDerivation rec {
  version = "1.5.3";
  name = "loudmouth-${version}";

  src = fetchurl {
    url = "https://mcabber.com/files/loudmouth/${name}.tar.bz2";
    sha256 = "0b6kd5gpndl9nzis3n6hcl0ldz74bnbiypqgqa1vgb0vrcar8cjl";
  };

  patches = [
  ];

  configureFlags = "--with-ssl=openssl";

  propagatedBuildInputs = [ openssl libidn glib zlib ];

  nativeBuildInputs = [ pkgconfig ];

  meta = {
    description = "A lightweight C library for the Jabber protocol";
    platforms = stdenv.lib.platforms.linux;
    downloadPage = "http://mcabber.com/files/loudmouth/";
    downloadURLRegexp = "loudmouth-[0-9.]+[.]tar[.]bz2$";
    updateWalker = true;
  };
}