lol
at 18.03-beta 21 lines 521 B view raw
1{stdenv, fetchurl, zlib}: 2 3stdenv.mkDerivation { 4 5 name = "libgadu-1.11.2"; 6 7 src = fetchurl { 8 url = http://toxygen.net/libgadu/files/libgadu-1.11.2.tar.gz; 9 sha256 = "0kifi9blhbimihqw4kaf6wyqhlx8fpp8nq4s6y280ar9p0il2n3z"; 10 }; 11 12 propagatedBuildInputs = [ zlib ]; 13 14 meta = { 15 description = "A library to deal with gadu-gadu protocol (most popular polish IM protocol)"; 16 homepage = http://toxygen.net/libgadu/; 17 platforms = stdenv.lib.platforms.linux; 18 license = stdenv.lib.licenses.lgpl21; 19 }; 20 21}