2021-01-22 17:23:22 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, zlib, protobufc, autoreconfHook }:
|
2010-09-28 15:37:44 -07:00
|
|
|
|
2021-01-22 17:23:22 -08:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libgadu";
|
|
|
|
version = "1.12.2";
|
2010-09-28 15:37:44 -07:00
|
|
|
|
2021-01-22 17:23:22 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wojtekka";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1s16cripy5w9k12534qb012iwc5m9qcjyrywgsziyn3kl3i0aa8h";
|
2010-09-28 15:37:44 -07:00
|
|
|
};
|
|
|
|
|
2012-01-14 10:03:38 -08:00
|
|
|
propagatedBuildInputs = [ zlib ];
|
2021-01-22 17:23:22 -08:00
|
|
|
buildInputs = [ protobufc ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2011-09-19 15:02:11 -07:00
|
|
|
|
2010-09-28 15:37:44 -07:00
|
|
|
meta = {
|
|
|
|
description = "A library to deal with gadu-gadu protocol (most popular polish IM protocol)";
|
2021-01-22 17:23:22 -08:00
|
|
|
homepage = "https://libgadu.net/index.en.html";
|
2021-01-21 09:00:13 -08:00
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
license = lib.licenses.lgpl21;
|
2010-09-28 15:37:44 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|