tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
sourcegit: 2025.01 -> 2025.03
TomaSajt
1 year ago
1e95f6ca
e47c5369
+14
-23
3 changed files
expand all
collapse all
unified
split
pkgs
by-name
so
sourcegit
deps.json
fix-darwin-git-path.patch
package.nix
+8
-18
pkgs/by-name/so/sourcegit/deps.json
reviewed
···
106
106
},
107
107
{
108
108
"pname": "HarfBuzzSharp",
109
109
-
"version": "7.3.0.2",
110
110
-
"hash": "sha256-ibgoqzT1NV7Qo5e7X2W6Vt7989TKrkd2M2pu+lhSDg8="
111
111
-
},
112
112
-
{
113
113
-
"pname": "HarfBuzzSharp",
114
109
"version": "7.3.0.3",
115
110
"hash": "sha256-1vDIcG1aVwVABOfzV09eAAbZLFJqibip9LaIx5k+JxM="
116
111
},
···
131
136
},
132
137
{
133
138
"pname": "LiveChartsCore",
134
134
-
"version": "2.0.0-rc4.5",
135
135
-
"hash": "sha256-2Fgn9Bo1aM6dZHCU+OVykOhggTzpcEfFNfYtWc4yvHc="
139
139
+
"version": "2.0.0-rc5",
140
140
+
"hash": "sha256-NHgYbeIdAoZlrC6QgVb1oLo3dlo17R8yTbPgiHMmJZc="
136
141
},
137
142
{
138
143
"pname": "LiveChartsCore.SkiaSharpView",
139
139
-
"version": "2.0.0-rc4.5",
140
140
-
"hash": "sha256-03RR14tA0DtYHiLdgmAI4Gp5/e2H6QPkNFOBeqiFaJU="
144
144
+
"version": "2.0.0-rc5",
145
145
+
"hash": "sha256-zppOFKHGn2HJMP8AAuk6mxJXqvgjfN7o8f0sInUWZGc="
141
146
},
142
147
{
143
148
"pname": "LiveChartsCore.SkiaSharpView.Avalonia",
144
144
-
"version": "2.0.0-rc4.5",
145
145
-
"hash": "sha256-lzG/5e6WDpUiHZ8GvovOMvwXyYoVBeB1Ktuuw2Fx5No="
149
149
+
"version": "2.0.0-rc5",
150
150
+
"hash": "sha256-xyFEZWWkRlBi8GNCDpyOUzt6aEe+9sR1+VN2yY59mhg="
146
151
},
147
152
{
148
153
"pname": "MicroCom.Runtime",
···
156
161
},
157
162
{
158
163
"pname": "SkiaSharp",
159
159
-
"version": "2.88.8",
160
160
-
"hash": "sha256-rD5gc4SnlRTXwz367uHm8XG5eAIQpZloGqLRGnvNu0A="
161
161
-
},
162
162
-
{
163
163
-
"pname": "SkiaSharp",
164
164
"version": "2.88.9",
165
165
"hash": "sha256-jZ/4nVXYJtrz9SBf6sYc/s0FxS7ReIYM4kMkrhZS+24="
166
166
},
167
167
{
168
168
"pname": "SkiaSharp.HarfBuzz",
169
169
-
"version": "2.88.8",
170
170
-
"hash": "sha256-W9jNuEo/8q+k2aHNC19FfKcBUIEWx2zDcGwM+jDZ1o8="
169
169
+
"version": "2.88.9",
170
170
+
"hash": "sha256-JH8Jr25eftPfq0BztamvxfDcAZtnx/jLRj5DGCS5/G8="
171
171
},
172
172
{
173
173
"pname": "SkiaSharp.NativeAssets.Linux",
+4
-3
pkgs/by-name/so/sourcegit/fix-darwin-git-path.patch
reviewed
···
15
15
index 5721fe8..bc2a57d 100644
16
16
--- a/src/Native/MacOS.cs
17
17
+++ b/src/Native/MacOS.cs
18
18
-
@@ -25,12 +25,7 @@ namespace SourceGit.Native
18
18
+
@@ -25,13 +25,7 @@ namespace SourceGit.Native
19
19
20
20
public string FindGitExecutable()
21
21
{
22
22
- var gitPathVariants = new List<string>() {
23
23
-
- "/usr/bin/git", "/usr/local/bin/git", "/opt/homebrew/bin/git", "/opt/homebrew/opt/git/bin/git"
23
23
+
- "/usr/bin/git", "/usr/local/bin/git", "/opt/homebrew/bin/git", "/opt/homebrew/opt/git/bin/git"
24
24
- };
25
25
- foreach (var path in gitPathVariants)
26
26
-
- if (File.Exists(path)) return path;
26
26
+
- if (File.Exists(path))
27
27
+
- return path;
27
28
- return string.Empty;
28
29
+ return Linux.FindExecutable("git");
29
30
}
+2
-2
pkgs/by-name/so/sourcegit/package.nix
reviewed
···
19
19
20
20
buildDotnetModule (finalAttrs: {
21
21
pname = "sourcegit";
22
22
-
version = "2025.01";
22
22
+
version = "2025.03";
23
23
24
24
src = fetchFromGitHub {
25
25
owner = "sourcegit-scm";
26
26
repo = "sourcegit";
27
27
tag = "v${finalAttrs.version}";
28
28
-
hash = "sha256-6FO0WRUcWm7xnuw6Br97+cWZhvzIOesg/eANZzeyxZo=";
28
28
+
hash = "sha256-l1M3ix0HY87y2ES/iwT2Ju/Mwb8CCmnz95amHlYKFS4=";
29
29
};
30
30
31
31
patches = [ ./fix-darwin-git-path.patch ];