Skip to content

Commit 7eade95

Browse files
authored
vault-tasks: 0.6.1 -> 0.8.0 (#371811)
2 parents e99784d + e12eb3e commit 7eade95

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

pkgs/by-name/va/vault-tasks/package.nix

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,26 @@
22
lib,
33
fetchFromGitHub,
44
rustPlatform,
5+
nix-update-script,
56
}:
6-
rustPlatform.buildRustPackage rec {
7+
let
8+
version = "0.8.0";
9+
in
10+
rustPlatform.buildRustPackage {
711
pname = "vault-tasks";
8-
version = "0.6.1";
12+
inherit version;
913
src = fetchFromGitHub {
1014
owner = "louis-thevenet";
1115
repo = "vault-tasks";
1216
rev = "v${version}";
13-
hash = "sha256-H0cfzjOtVzOEoGmj3u80hj1QlK1QEgbl9vq4otlXKew=";
17+
hash = "sha256-liU2zxBEOH5KMftru2PaIYZHLskm9WLNmUakn300/Xo=";
1418
};
15-
cargoHash = "sha256-Iezin3TguweHd9RIyFvNL4IWUtXNJbQH2KXIgaXJHgk=";
19+
cargoHash = "sha256-uKhgi3u7YSKLqG2ROCWs6+p206xghnsQ7nIZw5OtkY4=";
1620

1721
postInstall = "install -Dm444 desktop/vault-tasks.desktop -t $out/share/applications";
1822

23+
passthru.updateScript = nix-update-script { };
24+
1925
meta = {
2026
description = "TUI Markdown Task Manager";
2127
longDescription = ''

0 commit comments

Comments
 (0)