Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
703 B
Nix
39 lines
703 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
openssl,
|
|
libidn,
|
|
glib,
|
|
pkg-config,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.5.3";
|
|
pname = "loudmouth";
|
|
|
|
src = fetchurl {
|
|
url = "https://mcabber.com/files/loudmouth/${pname}-${version}.tar.bz2";
|
|
sha256 = "0b6kd5gpndl9nzis3n6hcl0ldz74bnbiypqgqa1vgb0vrcar8cjl";
|
|
};
|
|
|
|
configureFlags = [ "--with-ssl=openssl" ];
|
|
|
|
propagatedBuildInputs = [
|
|
openssl
|
|
libidn
|
|
glib
|
|
zlib
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight C library for the Jabber protocol";
|
|
platforms = platforms.all;
|
|
downloadPage = "http://mcabber.com/files/loudmouth/";
|
|
license = licenses.lgpl21;
|
|
};
|
|
}
|