fetchgit: Remove comment regarding path needing to be a string

It was changed in 2019 to be of the actual path type, and has apparently
been working since then.

Closes #143846
This commit is contained in:
pinn3 2022-08-18 04:43:26 +02:00
parent a6d96a709a
commit bab4cdd43a

View File

@ -65,7 +65,7 @@ else
stdenvNoCC.mkDerivation {
inherit name;
builder = ./builder.sh;
fetcher = ./nix-prefetch-git; # This must be a string to ensure it's called with bash.
fetcher = ./nix-prefetch-git;
nativeBuildInputs = [ git ]
++ lib.optionals fetchLFS [ git-lfs ];