From d777e6d6e44fee9a3d350ac763d739bd2d6844f4 Mon Sep 17 00:00:00 2001 From: DSeeLP <46624152+DSeeLP@users.noreply.github.com> Date: Sun, 22 Mar 2026 22:48:16 +0100 Subject: [PATCH] dart.fetchGitHashesScript: fetch submodules to match behavior of fetchgit --- pkgs/development/compilers/dart/fetch-git-hashes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/dart/fetch-git-hashes.py b/pkgs/development/compilers/dart/fetch-git-hashes.py index b2b3f67746db..fdb34830bc12 100755 --- a/pkgs/development/compilers/dart/fetch-git-hashes.py +++ b/pkgs/development/compilers/dart/fetch-git-hashes.py @@ -9,7 +9,7 @@ from pathlib import Path def fetch_git_hash(url: str, rev: str) -> str: result = subprocess.run( - ["nix-prefetch-git", "--url", url, "--rev", rev], + ["nix-prefetch-git", "--fetch-submodules", "--url", url, "--rev", rev], capture_output=True, text=True, check=True,