about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-08-02 13:28:32 +0700
committerGitHub <noreply@github.com>2021-08-02 13:28:32 +0700
commitf2724a972cc5175ffc1ab2542a652500ad4b5bf9 (patch)
tree0eec0c20a38ca5bd76b385a68690bf0bb5753192 /pkgs/tools
parent812987e1c859c5dec405b512ab6557ca5b841299 (diff)
parentb9c66d1b746bf7d707d4469d1ca2e2cf828b4709 (diff)
Merge pull request #132375 from r-ryantm/auto-update/bupstash
bupstash: 0.9.1 -> 0.10.0
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/backup/bupstash/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/backup/bupstash/default.nix b/pkgs/tools/backup/bupstash/default.nix
index 44d16549cdda1..e04f1b9e2eb9f 100644
--- a/pkgs/tools/backup/bupstash/default.nix
+++ b/pkgs/tools/backup/bupstash/default.nix
@@ -1,16 +1,16 @@
 { lib, fetchFromGitHub, installShellFiles, rustPlatform, ronn, pkg-config, libsodium }:
 rustPlatform.buildRustPackage rec {
   pname = "bupstash";
-  version = "0.9.1";
+  version = "0.10.0";
 
   src = fetchFromGitHub {
     owner = "andrewchambers";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-DzRGhdUxfBW6iazpCHlQ9J8IL10FVxhac8kx6yBSGNk=";
+    sha256 = "sha256-0vDty8JPUOt7mmBzQ9t1lnUyExBYW4hPmzvvhLSZhcs=";
   };
 
-  cargoSha256 = "sha256-IKk4VsO/oH4nC6F1W+JA3Agl7oXXNJ7zpP2PYpPLREU=";
+  cargoSha256 = "sha256-8W6uNLHCiCHB6mYyGnixiaHj1IyTnqjd8NaQG18W/uM=";
 
   nativeBuildInputs = [ ronn pkg-config installShellFiles ];
   buildInputs = [ libsodium ];