lol

genimage: add autoreconfHook, fixes cross compilation

authored by

Nick Cao and committed by
Bjørn Forsman
90bf453d 789fdb91

+2 -2
+2 -2
pkgs/tools/filesystems/genimage/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, libconfuse, gettext }: 1 + { lib, stdenv, fetchurl, autoreconfHook, pkg-config, libconfuse, gettext }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "genimage"; ··· 9 9 sha256 = "sha256-hp+WYtO3eMabHR/nDfZY4cnpCu2iart1P2/lXosMbnM="; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkg-config ]; 12 + nativeBuildInputs = [ autoreconfHook pkg-config ]; 13 13 buildInputs = [ libconfuse gettext ]; 14 14 15 15 postInstall = ''