linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / loudmouth / default.nix
bloba8d9b23cc84c02a9a74ad9f294248e6bd953ae8b
1 { lib, stdenv, fetchurl, openssl, libidn, glib, pkg-config, zlib }:
3 stdenv.mkDerivation rec {
4   version = "1.5.3";
5   pname = "loudmouth";
7   src = fetchurl {
8     url = "https://mcabber.com/files/loudmouth/${pname}-${version}.tar.bz2";
9     sha256 = "0b6kd5gpndl9nzis3n6hcl0ldz74bnbiypqgqa1vgb0vrcar8cjl";
10   };
12   patches = [
13   ];
15   configureFlags = [ "--with-ssl=openssl" ];
17   propagatedBuildInputs = [ openssl libidn glib zlib ];
19   nativeBuildInputs = [ pkg-config ];
21   meta = with lib; {
22     description = "A lightweight C library for the Jabber protocol";
23     platforms = platforms.all;
24     downloadPage = "http://mcabber.com/files/loudmouth/";
25     downloadURLRegexp = "loudmouth-[0-9.]+[.]tar[.]bz2$";
26     updateWalker = true;
27     license = licenses.lgpl21;
28   };