From dc3d1433babf0f67aa9d3c9d5222fcf1c42f0bcf Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Sat, 4 Jan 2025 17:26:15 +0100 Subject: [PATCH] julia-modules: replace `git` with `gitMinimal` --- pkgs/development/julia-modules/util.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/julia-modules/util.nix b/pkgs/development/julia-modules/util.nix index d70bdc48bffa..b1c63b2b234e 100644 --- a/pkgs/development/julia-modules/util.nix +++ b/pkgs/development/julia-modules/util.nix @@ -1,5 +1,5 @@ { - git, + gitMinimal, runCommand, }: @@ -20,7 +20,7 @@ # Convert an ordinary source checkout into a repo with a single commit repoifySimple = name: path: - runCommand ''${name}-repoified'' { buildInputs = [ git ]; } '' + runCommand ''${name}-repoified'' { buildInputs = [ gitMinimal ]; } '' mkdir -p $out cp -r ${path}/. $out cd $out @@ -36,7 +36,7 @@ # Convert an dependency source info into a repo with a single commit repoifyInfo = uuid: info: - runCommand ''julia-${info.name}-${info.version}'' { buildInputs = [ git ]; } '' + runCommand ''julia-${info.name}-${info.version}'' { buildInputs = [ gitMinimal ]; } '' mkdir -p $out cp -r ${info.src}/. $out cd $out