tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
wails: 2.10.1 -> 2.10.2
thtrf
7 months ago
8059b99f
dce17d8f
+11
-8
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
wa
wails
package.nix
+11
-8
pkgs/by-name/wa/wails/package.nix
···
8
8
go,
9
9
nodejs,
10
10
zlib,
11
11
+
nix-update-script,
11
12
# Linux specific dependencies
12
13
gtk3,
13
13
-
webkitgtk_4_0,
14
14
+
webkitgtk_4_1,
14
15
}:
15
16
16
17
buildGoModule rec {
17
18
pname = "wails";
18
18
-
version = "2.10.1";
19
19
+
version = "2.10.2";
19
20
20
21
src =
21
22
fetchFromGitHub {
22
23
owner = "wailsapp";
23
24
repo = "wails";
24
25
tag = "v${version}";
25
25
-
hash = "sha256-PLlr2iBvYwJBvozQGvM68Xp3ts7Pt75hGhNZmMhNqbI=";
26
26
+
hash = "sha256-b0ns2cXlUT5tPbVEOzQGftxoUqGEDuzj+2KDxNnfs4c=";
26
27
}
27
28
+ "/v2";
28
29
29
29
-
vendorHash = "sha256-7f7QJv2PM7/CG30bWSDP4+wuhi5Aa9rXT5voHm+QivE=";
30
30
+
vendorHash = "sha256-u1NoAHxBSzw44W3l5MzMxMUjgrfM9EDkKwR4GAPQBVE=";
30
31
31
32
proxyVendor = true;
32
33
···
52
53
]
53
54
++ lib.optionals stdenv.hostPlatform.isLinux [
54
55
gtk3
55
55
-
webkitgtk_4_0
56
56
+
webkitgtk_4_1
56
57
];
57
58
58
59
ldflags = [
···
75
76
lib.makeLibraryPath (
76
77
lib.optionals stdenv.hostPlatform.isLinux [
77
78
gtk3
78
78
-
webkitgtk_4_0
79
79
+
webkitgtk_4_1
79
80
]
80
81
)
81
82
}" \
82
83
--set PKG_CONFIG_PATH "$PKG_CONFIG_PATH" \
83
84
--set CGO_LDFLAGS "-L${lib.makeLibraryPath [ zlib ]}"
84
85
'';
86
86
+
87
87
+
passthru.updateScript = nix-update-script { };
85
88
86
89
meta = {
87
87
-
description = "Build applications using Go + HTML + CSS + JS";
90
90
+
description = "Build desktop applications using Go & Web Technologies";
88
91
homepage = "https://wails.io";
89
92
license = lib.licenses.mit;
90
90
-
maintainers = with lib.maintainers; [ ];
93
93
+
maintainers = with lib.maintainers; [ thtrf ];
91
94
mainProgram = "wails";
92
95
platforms = lib.platforms.unix;
93
96
};