171406507d
Fixes CVE-2013-4488 and CVE-2014-3775.
26 lines
650 B
Nix
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;
|
|
};
|
|
|
|
}
|