nixpkgs/pkgs/development/libraries/htmlcxx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
581 B
Nix
Raw Normal View History

2021-03-11 18:41:17 +00:00
{ lib, stdenv, fetchurl, libiconv }:
stdenv.mkDerivation rec {
pname = "htmlcxx";
version = "0.87";
src = fetchurl {
url = "mirror://sourceforge/htmlcxx/v${version}/${pname}-${version}.tar.gz";
sha256 = "sha256-XTj5OM9N+aKYpTRq8nGV//q/759GD8KgIjPLz6j8dcg=";
};
2021-03-11 18:41:17 +00:00
buildInputs = [ libiconv ];
patches = [
./ptrdiff.patch
./c++17.patch
];
meta = with lib; {
homepage = "http://htmlcxx.sourceforge.net/";
2017-03-13 22:11:03 +00:00
description = "A simple non-validating css1 and html parser for C++";
license = licenses.lgpl2;
2021-03-11 18:41:17 +00:00
platforms = platforms.all;
};
}