We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0d1eed2 + dc1fa5e commit a9200a8Copy full SHA for a9200a8
pkgs/by-name/we/wealthfolio/package.nix
@@ -3,7 +3,9 @@
3
stdenv,
4
fetchFromGitHub,
5
cargo-tauri,
6
+ jq,
7
libsoup_3,
8
+ moreutils,
9
nodejs,
10
openssl,
11
pkg-config,
@@ -41,6 +43,8 @@ stdenv.mkDerivation (finalAttrs: {
41
43
42
44
nativeBuildInputs = [
45
cargo-tauri.hook
46
+ jq
47
+ moreutils
48
nodejs
49
pkg-config
50
pnpm.configHook
@@ -54,6 +58,14 @@ stdenv.mkDerivation (finalAttrs: {
54
58
webkitgtk_4_1
55
59
];
56
60
61
+ postPatch = ''
62
+ jq \
63
+ '.plugins.updater.endpoints = [ ]
64
+ | .bundle.createUpdaterArtifacts = false' \
65
+ src-tauri/tauri.conf.json \
66
+ | sponge src-tauri/tauri.conf.json
67
+ '';
68
+
57
69
passthru.updateScript = nix-update-script { };
70
71
meta = {
0 commit comments