nixpkgs/pkgs/development/libraries/loudmouth/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
690 B
Nix
Raw Normal View History

{ 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";
};
patches = [
];
2018-07-25 21:44:21 +00:00
configureFlags = [ "--with-ssl=openssl" ];
propagatedBuildInputs = [ openssl libidn glib zlib ];
nativeBuildInputs = [ pkg-config ];
meta = with lib; {
description = "A lightweight C library for the Jabber protocol";
2021-03-12 05:20:04 +00:00
platforms = platforms.all;
downloadPage = "http://mcabber.com/files/loudmouth/";
2018-10-23 17:54:07 +00:00
license = licenses.lgpl21;
};
}