depot/third_party/nixpkgs/pkgs/development/libraries/libgadu/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

25 lines
648 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 = "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;
};
}