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

stdenv.mkDerivation rec {
  pname = "htmlcxx";
  version = "0.86";

  src = fetchurl {
    url = "mirror://sourceforge/htmlcxx/htmlcxx/${version}/${pname}-${version}.tar.gz";
    sha256 = "1hgmyiad3qgbpf2dvv2jygzj6jpz4dl3n8ds4nql68a4l9g2nm07";
  };

  patches = [ ./ptrdiff.patch ];

  meta = with stdenv.lib; {
    homepage = "http://htmlcxx.sourceforge.net/";
    description = "A simple non-validating css1 and html parser for C++";
    license = licenses.lgpl2;
    platforms = platforms.linux;
  };
}