From 714cc1046a940eda8dd9583e8e2d6d1aab7f481b Mon Sep 17 00:00:00 2001 From: "Travis A. Everett" Date: Sun, 4 Jun 2023 14:47:31 -0500 Subject: resholve: fix tests after #232713 One of resholve's passthru tests depended on getting `script` from util-linux, but it's no longer there on macos after #232713. This change just tracks upstream change to use unixtools.script, which is what I should have used in the first place. Upstream commit for reference: https://github.com/abathur/resholve/commit/340715094963885b58785176c0d444f3b511a9e5 --- pkgs/development/misc/resholve/test.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/misc/resholve/test.nix b/pkgs/development/misc/resholve/test.nix index 9096a9249a4d2..8f9da36c9de47 100644 --- a/pkgs/development/misc/resholve/test.nix +++ b/pkgs/development/misc/resholve/test.nix @@ -20,7 +20,7 @@ , runDemo ? false , binlore , sqlite -, util-linux +, unixtools , gawk , rlwrap , gnutar @@ -29,7 +29,7 @@ let default_packages = [ bash file findutils gettext ]; - parsed_packages = [ coreutils sqlite util-linux gnused gawk findutils rlwrap gnutar bc ]; + parsed_packages = [ coreutils sqlite unixtools.script gnused gawk findutils rlwrap gnutar bc ]; in rec { module1 = resholve.mkDerivation { -- cgit 1.4.1