3
0
Fork 0
forked from mirrors/nixpkgs

kmod: crossDrv should use native xz

This commit is contained in:
Eric Litak 2017-02-07 09:17:28 -08:00
parent 980ced505f
commit f89504d067

View file

@ -1,4 +1,4 @@
{ stdenv, lib, fetchurl, autoreconfHook, xz, zlib, pkgconfig, libxslt }:
{ stdenv, buildPackages, lib, fetchurl, autoreconfHook, pkgconfig, libxslt, xz }:
let
systems = [ "/run/current-system/kernel-modules" "/run/booted-system/kernel-modules" "" ];
@ -14,13 +14,14 @@ in stdenv.mkDerivation rec {
};
nativeBuildInputs = [ autoreconfHook pkgconfig libxslt ];
buildInputs = [ xz /* zlib */ ];
buildInputs = [ xz ];
# HACK until BUG issue #21191 is addressed
crossAttrs.preUnpack = ''PATH="${buildPackages.xz}/bin''${PATH:+:}$PATH"'';
configureFlags = [
"--sysconfdir=/etc"
"--with-xz"
"--with-modulesdirs=${modulesDirs}"
# "--with-zlib"
];
patches = [ ./module-dir.patch ];