summary refs log tree commit diff
path: root/pkgs/development/libraries/htmlcxx/default.nix
blob: 6557d8f804108a89e167fb8e6f8bcf9b238b8d2b (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 {
  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;
  };
}