about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libgadu/default.nix
blob: 72bf067b2db4b98ebc1936ac27647a76af5ac93d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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;
  };

}