2011-09-20 00:02:11 +02:00
|
|
|
{stdenv, fetchurl, zlib}:
|
2010-09-29 00:37:44 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
|
2011-09-20 00:02:11 +02:00
|
|
|
name = "libgadu-1.11.0";
|
2010-09-29 00:37:44 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-09-20 00:02:11 +02:00
|
|
|
url = http://toxygen.net/libgadu/files/libgadu-1.11.0.tar.gz;
|
|
|
|
sha256 = "045a0bd395k3ramdvlzyfx3878p42fv4r04rgasmdsm2n33wgm38";
|
2010-09-29 00:37:44 +02:00
|
|
|
};
|
|
|
|
|
2011-09-20 00:02:11 +02:00
|
|
|
buildInputs = [ zlib ];
|
|
|
|
|
2010-09-29 00:37:44 +02:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|