summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2023-01-08 12:03:12 +0000
committerGitHub <noreply@github.com>2023-01-08 12:03:12 +0000
commite3e278a515caa5e10549543a6c8c446f7b1b1755 (patch)
treedf2ed9e94878e6a981729d70631d9893cff2b61a
parentb9a864c04dd71aa17e13852801c0367723531b79 (diff)
parent66fb0339383622b7af10f9a02e23be3943fd8004 (diff)
Merge pull request #208990 from wegank/htmlcxx
htmlcxx: unbreak on aarch64-darwin
-rw-r--r--pkgs/development/libraries/htmlcxx/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/libraries/htmlcxx/default.nix b/pkgs/development/libraries/htmlcxx/default.nix
index af9574d136fb..41d24b81bf69 100644
--- a/pkgs/development/libraries/htmlcxx/default.nix
+++ b/pkgs/development/libraries/htmlcxx/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, libiconv }:
+{ lib, stdenv, fetchurl, autoreconfHook, libiconv }:
stdenv.mkDerivation rec {
pname = "htmlcxx";
@@ -9,6 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-XTj5OM9N+aKYpTRq8nGV//q/759GD8KgIjPLz6j8dcg=";
};
+ nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libiconv ];
patches = [
./ptrdiff.patch
@@ -20,7 +21,5 @@ stdenv.mkDerivation rec {
description = "A simple non-validating css1 and html parser for C++";
license = licenses.lgpl2;
platforms = platforms.all;
- # never built on aarch64-darwin since first introduction in nixpkgs
- broken = stdenv.isDarwin && stdenv.isAarch64;
};
}