wv: fix cross compilation, add autoreconfHook
This commit is contained in:
parent
c2f2239d92
commit
a1a1d335e1
@ -1,5 +1,8 @@
|
||||
{ lib, stdenv, fetchurl, zlib, imagemagick, libpng, glib, pkg-config, libgsf
|
||||
, libxml2, bzip2 }:
|
||||
, libxml2, bzip2
|
||||
, autoreconfHook
|
||||
, buildPackages
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "wv";
|
||||
@ -10,11 +13,20 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "17f16lkdv1c3amaz2hagiicih59ynpp4786k1m2qa1sw68xhswsc";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
||||
buildInputs = [ zlib imagemagick libpng glib libgsf libxml2 bzip2 ];
|
||||
|
||||
configureFlags = [
|
||||
"PKG_CONFIG=${buildPackages.pkg-config}/bin/${buildPackages.pkg-config.targetPrefix}pkg-config"
|
||||
];
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
# autoreconfHook fails hard if these two files do not exist
|
||||
postPatch = ''
|
||||
touch AUTHORS ChangeLog
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Converter from Microsoft Word formats to human-editable ones";
|
||||
platforms = lib.platforms.unix;
|
||||
|
Loading…
Reference in New Issue
Block a user