From 22f9452996b372325c51b45dbd75cf1ec499d75d Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Fri, 2 Dec 2022 11:56:08 +0000 Subject: [PATCH] hivex: strictDeps Actually getting this to cross-compile will take a bunch more effort, but this is a start. --- pkgs/development/libraries/hivex/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/hivex/default.nix b/pkgs/development/libraries/hivex/default.nix index c0bc0e3faa63..ec94e53afa2c 100644 --- a/pkgs/development/libraries/hivex/default.nix +++ b/pkgs/development/libraries/hivex/default.nix @@ -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 ]