summary refs log tree commit diff
path: root/pkgs/build-support/fetchgit/default.nix
diff options
context:
space:
mode:
authorpinn3 <iam@lacking.education>2022-08-18 04:43:26 +0200
committerpinn3 <iam@lacking.education>2022-08-18 04:50:32 +0200
commitbab4cdd43a2497dd0fa6303b7f9cc00380e1c185 (patch)
treee0863aa3b7b54af960c9b8bfe3ee6f947b46ba1c /pkgs/build-support/fetchgit/default.nix
parenta6d96a709a1d0c64e361ae6a824ec4f62c426ad5 (diff)
downloadnixpkgs-bab4cdd43a2497dd0fa6303b7f9cc00380e1c185.tar
nixpkgs-bab4cdd43a2497dd0fa6303b7f9cc00380e1c185.tar.gz
nixpkgs-bab4cdd43a2497dd0fa6303b7f9cc00380e1c185.tar.bz2
nixpkgs-bab4cdd43a2497dd0fa6303b7f9cc00380e1c185.tar.lz
nixpkgs-bab4cdd43a2497dd0fa6303b7f9cc00380e1c185.tar.xz
nixpkgs-bab4cdd43a2497dd0fa6303b7f9cc00380e1c185.tar.zst
nixpkgs-bab4cdd43a2497dd0fa6303b7f9cc00380e1c185.zip
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
Diffstat (limited to 'pkgs/build-support/fetchgit/default.nix')
-rw-r--r--pkgs/build-support/fetchgit/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/build-support/fetchgit/default.nix b/pkgs/build-support/fetchgit/default.nix
index f516c3d5a03..34a7a330c04 100644
--- a/pkgs/build-support/fetchgit/default.nix
+++ b/pkgs/build-support/fetchgit/default.nix
@@ -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 ];