colm: cross-compilation

This commit is contained in:
Travis Athougies
2019-07-09 22:45:33 -07:00
committed by GitHub
parent d2c3c1f2bb
commit 9a15d93f07

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, makeWrapper, gcc, asciidoc }:
{ stdenv, fetchurl, makeWrapper, gcc, asciidoc, autoreconfHook }:
stdenv.mkDerivation rec {
name = "colm-${version}";
@@ -9,7 +9,9 @@ stdenv.mkDerivation rec {
sha256 = "0f76iri173l2wja2v7qrwmf958cqwh5g9x4bhj2z8wknmlla6gz4";
};
nativeBuildInputs = [ makeWrapper asciidoc ];
patches = [ ./cross-compile.patch ];
nativeBuildInputs = [ makeWrapper asciidoc autoreconfHook ];
doCheck = true;