Skip to content

Commit cddc4e2

Browse files
committedMar 20, 2025
ants: add coreutils to PATH
Fixes #391554
1 parent 809e198 commit cddc4e2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎pkgs/applications/science/biology/ants/default.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
fetchFromGitHub,
55
cmake,
66
makeBinaryWrapper,
7+
coreutils,
78
itk,
89
vtk,
910
Cocoa,
@@ -41,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: {
4142

4243
postInstall = ''
4344
for file in $out/bin/*; do
44-
wrapProgram $file --set PATH "$out/bin"
45+
wrapProgram $file --prefix PATH : "$out/bin":${lib.makeBinPath [ coreutils ]}
4546
done
4647
'';
4748

0 commit comments

Comments
 (0)
Failed to load comments.