lgogdownloader: init at 2.24, fixes #9613

htmlcxx: init at 0.85, dependency of lgogdownloader
This commit is contained in:
Mariusz `shd` Gliwiński
2015-09-03 13:09:06 +02:00
committed by Rok Garbas
parent f223448d5d
commit 7bd6aac2d0
4 changed files with 66 additions and 0 deletions
@@ -0,0 +1,20 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "htmlcxx-${version}";
version = "0.85";
src = fetchurl {
url = "mirror://sourceforge/htmlcxx/htmlcxx/${version}/${name}.tar.gz";
sha256 = "1rdsjrcjkf7mi3182lq4v5wn2wncw0ziczagaqnzi0nwmp2a00mb";
};
patches = [ ./ptrdiff.patch ];
meta = {
homepage = http://htmlcxx.sourceforge.net/;
description = "htmlcxx is a simple non-validating css1 and html parser for C++.";
license = stdenv.lib.licenses.lgpl2;
platforms = stdenv.lib.platforms.linux;
};
}