about summary refs log tree commit diff
path: root/pkgs/development/libraries/libgadu/default.nix
blob: 455380f55894e20b48490da2b63b42e2fe97329d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl}:

stdenv.mkDerivation {

  name = "libgadu-1.9.0";

  src = fetchurl {
    url = http://toxygen.net/libgadu/files/libgadu-1.9.0.tar.gz;
    sha256 = "1ygmda23hf7cysns9kglsiljzb4x8339n878k70yacgzm07dryhj";
  };

  meta = {
    description = "A library to deal with gadu-gadu protocol (most popular polish IM protocol)";
    homepage = http://toxygen.net/libgadu/;
    platforms = stdenv.lib.platforms.linux;
    license = "LGPLv2.1";
  };

}