patchPpdFilesHook: use getExe' in test

This commit is contained in:
Yarny0
2025-12-18 19:38:23 +01:00
parent 47773e13ef
commit 39dc238759
+5 -2
View File
@@ -1,4 +1,5 @@
{
lib,
replaceVars,
diffutils,
stdenv,
@@ -6,6 +7,8 @@
}:
let
inherit (lib.meta) getExe';
input = replaceVars ./test.ppd {
keep = "cmp";
patch = "cmp";
@@ -15,9 +18,9 @@ let
output = replaceVars ./test.ppd {
keep = "cmp";
patch = "${diffutils}/bin/cmp";
patch = getExe' diffutils "cmp";
pathkeep = "/bin/cmp";
pathpatch = "${diffutils}/bin/cmp";
pathpatch = getExe' diffutils "cmp";
};
in