fix jfsutils cross compilation

This commit is contained in:
eburimu
2018-11-29 10:14:02 +00:00
committed by Jörg Thalheim
parent 5df783f106
commit 98a2a5b537
2 changed files with 18 additions and 2 deletions
+8 -2
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libuuid }:
{ stdenv, fetchurl, libuuid, autoreconfHook }:
stdenv.mkDerivation rec {
name = "jfsutils-1.1.15";
@@ -8,8 +8,14 @@ stdenv.mkDerivation rec {
sha256 = "0kbsy2sk1jv4m82rxyl25gwrlkzvl3hzdga9gshkxkhm83v1aji4";
};
patches = [ ./types.patch ./hardening-format.patch ];
patches = [
./types.patch
./hardening-format.patch
# required for cross-compilation
./ar-fix.patch
];
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libuuid ];
meta = with stdenv.lib; {