mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
30 lines
773 B
Nix
30 lines
773 B
Nix
{ 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 = with stdenv.lib; {
|
|
description = "A lightweight C library for the Jabber protocol";
|
|
platforms = platforms.linux;
|
|
downloadPage = "http://mcabber.com/files/loudmouth/";
|
|
downloadURLRegexp = "loudmouth-[0-9.]+[.]tar[.]bz2$";
|
|
updateWalker = true;
|
|
license = licenses.lgpl21;
|
|
};
|
|
}
|