Commit bab4cdd4 authored by pinn3's avatar pinn3
Browse files

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
parent a6d96a70
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 ];