Merge pull request #299264 from NickCao/libchardet-cross

libchardet: add autoreconfHook, fixing cross compilation
This commit is contained in:
Ben Siraphob 2024-04-02 14:58:51 -04:00 committed by GitHub
commit ac9983e776
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;