lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

julia-modules: replace `git` with `gitMinimal`

+3 -3
+3 -3
pkgs/development/julia-modules/util.nix
··· 1 1 { 2 - git, 2 + gitMinimal, 3 3 runCommand, 4 4 }: 5 5 ··· 20 20 # Convert an ordinary source checkout into a repo with a single commit 21 21 repoifySimple = 22 22 name: path: 23 - runCommand ''${name}-repoified'' { buildInputs = [ git ]; } '' 23 + runCommand ''${name}-repoified'' { buildInputs = [ gitMinimal ]; } '' 24 24 mkdir -p $out 25 25 cp -r ${path}/. $out 26 26 cd $out ··· 36 36 # Convert an dependency source info into a repo with a single commit 37 37 repoifyInfo = 38 38 uuid: info: 39 - runCommand ''julia-${info.name}-${info.version}'' { buildInputs = [ git ]; } '' 39 + runCommand ''julia-${info.name}-${info.version}'' { buildInputs = [ gitMinimal ]; } '' 40 40 mkdir -p $out 41 41 cp -r ${info.src}/. $out 42 42 cd $out