mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
hivex: strictDeps
Actually getting this to cross-compile will take a bunch more effort, but this is a start.
This commit is contained in:
parent
39fd1c608c
commit
22f9452996
@ -1,5 +1,6 @@
|
||||
{ lib, stdenv, fetchurl, pkg-config, autoreconfHook, makeWrapper
|
||||
, perlPackages, libxml2, libintl }:
|
||||
{ lib, stdenv, fetchurl, pkg-config, autoreconfHook, makeWrapper, perlPackages
|
||||
, libxml2, libintl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hivex";
|
||||
@ -12,7 +13,8 @@ stdenv.mkDerivation rec {
|
||||
|
||||
patches = [ ./hivex-syms.patch ];
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook makeWrapper pkg-config ];
|
||||
strictDeps = true;
|
||||
nativeBuildInputs = [ autoreconfHook makeWrapper perlPackages.perl pkg-config ];
|
||||
buildInputs = [
|
||||
libxml2
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user