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