rdedup: 3.1.1 -> 3.2.1

+4 -36
+4 -8
pkgs/tools/backup/rdedup/default.nix
··· 4 5 rustPlatform.buildRustPackage rec { 6 pname = "rdedup"; 7 - version = "3.1.1"; 8 9 src = fetchFromGitHub { 10 owner = "dpc"; 11 repo = "rdedup"; 12 - rev = "rdedup-v${version}"; 13 - sha256 = "0y34a3mpghdmcb2rx4z62q0s351bfmy1287d75mm07ryfgglgsd7"; 14 }; 15 16 - cargoSha256 = "1k0pl9i7zf1ki5ch2zxc1fqsf94bxjlvjrkh0500cycwqcdys296"; 17 - 18 - cargoPatches = [ 19 - ./v3.1.1-fix-Cargo.lock.patch 20 - ]; 21 22 nativeBuildInputs = [ pkg-config llvmPackages.libclang clang ]; 23 buildInputs = [ openssl libsodium xz ]
··· 4 5 rustPlatform.buildRustPackage rec { 6 pname = "rdedup"; 7 + version = "3.2.1"; 8 9 src = fetchFromGitHub { 10 owner = "dpc"; 11 repo = "rdedup"; 12 + rev = "v${version}"; 13 + sha256 = "sha256-GEYP18CaCQShvCg8T7YTvlybH1LNO34KBxgmsTv2Lzs="; 14 }; 15 16 + cargoSha256 = "sha256-I6d3IyPBcUsrvlzF7W0hFM4hcXi4wWro9bCeP4eArHI="; 17 18 nativeBuildInputs = [ pkg-config llvmPackages.libclang clang ]; 19 buildInputs = [ openssl libsodium xz ]
-28
pkgs/tools/backup/rdedup/v3.1.1-fix-Cargo.lock.patch
··· 1 - diff --git a/Cargo.lock b/Cargo.lock 2 - index 96be83a..fe07471 100644 3 - --- a/Cargo.lock 4 - +++ b/Cargo.lock 5 - @@ -880,12 +880,12 @@ dependencies = [ 6 - 7 - [[package]] 8 - name = "rdedup" 9 - -version = "3.1.0" 10 - +version = "3.1.1" 11 - dependencies = [ 12 - "clap 2.32.0 (registry+https://github.com/rust-lang/crates.io-index)", 13 - "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 14 - "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", 15 - - "rdedup-lib 3.0.0", 16 - + "rdedup-lib 3.1.0", 17 - "rpassword 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 18 - "slog 2.3.2 (registry+https://github.com/rust-lang/crates.io-index)", 19 - "slog-async 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)", 20 - @@ -900,7 +900,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 21 - 22 - [[package]] 23 - name = "rdedup-lib" 24 - -version = "3.0.0" 25 - +version = "3.1.0" 26 - dependencies = [ 27 - "backblaze-b2 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", 28 - "base64 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)",
···