Unverified Commit 2d28cc4c authored by Nick Cao's avatar Nick Cao
Browse files

libchardet: add autoreconfHook, fixing cross compilation

parent d50918bc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, perl }:
{ lib, stdenv, fetchFromGitHub, autoreconfHook, perl }:

stdenv.mkDerivation rec {
  pname = "libchardet";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
    sha256 = "sha256-JhEiWM3q8X+eEBHxv8k9yYOaTGoJOzI+/iFYC0gZJJs=";
  };

  nativeBuildInputs = [ perl ];
  nativeBuildInputs = [ autoreconfHook perl ];

  enableParallelBuilding = true;