libchardet: add autoreconfHook, fixing cross compilation

This commit is contained in:
Nick Cao 2024-03-26 14:01:33 -04:00
parent d50918bc1c
commit 2d28cc4c28
No known key found for this signature in database

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, perl }: { lib, stdenv, fetchFromGitHub, autoreconfHook, perl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "libchardet"; pname = "libchardet";
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-JhEiWM3q8X+eEBHxv8k9yYOaTGoJOzI+/iFYC0gZJJs="; sha256 = "sha256-JhEiWM3q8X+eEBHxv8k9yYOaTGoJOzI+/iFYC0gZJJs=";
}; };
nativeBuildInputs = [ perl ]; nativeBuildInputs = [ autoreconfHook perl ];
enableParallelBuilding = true; enableParallelBuilding = true;