hivex: strictDeps

Actually getting this to cross-compile will take a bunch more effort,
but this is a start.
This commit is contained in:
Alyssa Ross
2023-01-11 21:55:56 +00:00
committed by Alyssa Ross
parent 39fd1c608c
commit 22f9452996
+5 -3
View File
@@ -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
]