+1
-1
flake.nix
+1
-1
flake.nix
···
49
49
inherit (gitignore.lib) gitignoreSource;
50
50
in {
51
51
overlays.default = final: prev: let
52
-
goModHash = "sha256-2vljseczrvsl2T0P9k69ro72yU59l5fp9r/sszmXYY4=";
52
+
goModHash = "sha256-EilWxfqrcKDaSR5zA3ZuDSCq7V+/IfWpKPu8HWhpndA=";
53
53
buildCmdPackage = name:
54
54
final.buildGoModule {
55
55
pname = name;
+1
-1
patchutil/patchutil.go
+1
-1
patchutil/patchutil.go
···
182
182
}
183
183
newTemp.Close()
184
184
185
-
cmd := exec.Command("diff", "-U", "9999", "--label", oldFile, "--label", newFile, oldTemp.Name(), newTemp.Name())
185
+
cmd := exec.Command("diff", "-u", "--label", oldFile, "--label", newFile, oldTemp.Name(), newTemp.Name())
186
186
output, err := cmd.CombinedOutput()
187
187
188
188
if exitErr, ok := err.(*exec.ExitError); ok && exitErr.ExitCode() == 1 {