nixpkgs/pkgs/development/libraries/libgadu/default.nix
Thomas Gerbet 171406507d libgadu: 1.11.2 -> 1.12.2
Fixes CVE-2013-4488 and CVE-2014-3775.
2021-01-23 13:38:55 +01:00

26 lines
650 B
Nix

{ lib, stdenv, fetchFromGitHub, zlib, protobufc, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "libgadu";
version = "1.12.2";
src = fetchFromGitHub {
owner = "wojtekka";
repo = pname;
rev = version;
sha256 = "1s16cripy5w9k12534qb012iwc5m9qcjyrywgsziyn3kl3i0aa8h";
};
propagatedBuildInputs = [ zlib ];
buildInputs = [ protobufc ];
nativeBuildInputs = [ autoreconfHook ];
meta = {
description = "A library to deal with gadu-gadu protocol (most popular polish IM protocol)";
homepage = "https://libgadu.net/index.en.html";
platforms = lib.platforms.linux;
license = lib.licenses.lgpl21;
};
}