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