Skip to content

Commit 3e2a078

Browse files
authored
glance: 0.8.1 -> 0.8.3, fix build on x86_64-darwin (#408905)
2 parents 5444498 + f519f75 commit 3e2a078

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

pkgs/by-name/gl/glance/package.nix

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,18 @@
99

1010
buildGoModule (finalAttrs: {
1111
pname = "glance";
12-
version = "0.8.1";
12+
version = "0.8.3";
1313

1414
src = fetchFromGitHub {
1515
owner = "glanceapp";
1616
repo = "glance";
1717
tag = "v${finalAttrs.version}";
18-
hash = "sha256-syWalphoKjUYrQjKrQUMDijgILQ+AIOVTMqYCiYVWyU=";
18+
hash = "sha256-o2Yom40HbNKe3DMMxz0Mf2gG8zresgU52Odpj2H7ZPU=";
1919
};
2020

21-
vendorHash = "sha256-81FAWMe7ksmbklXGGg15v2W4nuT6AcBHLIhXF7bI78c=";
21+
patches = [ ./update_purego.patch ];
22+
23+
vendorHash = "sha256-esPtCg63A40mX9hADOhEa+NjNk+9MI/0qZG3uE91qxg=";
2224

2325
ldflags = [
2426
"-s"
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
diff --git a/go.mod b/go.mod
2+
index ccea58ca68..118d91c650 100644
3+
--- a/go.mod
4+
+++ b/go.mod
5+
@@ -15,7 +15,7 @@
6+
require (
7+
github.com/PuerkitoBio/goquery v1.10.3 // indirect
8+
github.com/andybalholm/cascadia v1.3.3 // indirect
9+
- github.com/ebitengine/purego v0.8.2 // indirect
10+
+ github.com/ebitengine/purego v0.8.3 // indirect
11+
github.com/go-ole/go-ole v1.3.0 // indirect
12+
github.com/json-iterator/go v1.1.12 // indirect
13+
github.com/lufia/plan9stats v0.0.0-20250317134145-8bc96cf8fc35 // indirect
14+
diff --git a/go.sum b/go.sum
15+
index 80c2d6c664..6236b4de85 100644
16+
--- a/go.sum
17+
+++ b/go.sum
18+
@@ -11,6 +11,8 @@
19+
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
20+
github.com/ebitengine/purego v0.8.2 h1:jPPGWs2sZ1UgOSgD2bClL0MJIqu58nOmIcBuXr62z1I=
21+
github.com/ebitengine/purego v0.8.2/go.mod h1:iIjxzd6CiRiOG0UyXP+V1+jWqUXVjPKLAI0mRfJZTmQ=
22+
+github.com/ebitengine/purego v0.8.3 h1:K+0AjQp63JEZTEMZiwsI9g0+hAMNohwUOtY0RPGexmc=
23+
+github.com/ebitengine/purego v0.8.3/go.mod h1:iIjxzd6CiRiOG0UyXP+V1+jWqUXVjPKLAI0mRfJZTmQ=
24+
github.com/fsnotify/fsnotify v1.8.0 h1:dAwr6QBTBZIkG8roQaJjGof0pp0EeF+tNV7YBP3F/8M=
25+
github.com/fsnotify/fsnotify v1.8.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0=
26+
github.com/fsnotify/fsnotify v1.9.0 h1:2Ml+OJNzbYCTzsxtv8vKSFD9PbJjmhYF14k/jKC7S9k=

0 commit comments

Comments
 (0)