awsbck: 0.3.5 -> 0.3.6

This commit is contained in:
beeb 2023-11-29 09:50:48 +01:00
parent ef9a4d3b77
commit 818d4e2cb3
No known key found for this signature in database
GPG Key ID: 3C74CF4793150A13

View File

@ -2,27 +2,25 @@
, stdenv
, fetchFromGitHub
, rustPlatform
, installShellFiles
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "awsbck";
version = "0.3.5";
version = "0.3.6";
src = fetchFromGitHub {
owner = "beeb";
repo = "awsbck";
rev = "v${version}";
hash = "sha256-BitR4f1VzYs5L7hT5OCbBbe4JvPIOPDQ9byKEkfBDBY=";
hash = "sha256-qW8UY+klNqzDcfVVCW1O7EARFdgLmnf7g/WcYNfT1SI=";
};
cargoHash = "sha256-J5BI6Gv20iAe2XCt1riLATCnlOg+pcj7q2Gzo2ZN0ms=";
nativeBuildInputs = [ installShellFiles ];
cargoHash = "sha256-T/xzhE1XXexyT5ktDxny68zaszEhqKfSmibjs6T2B2E=";
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
# tests run in CI on the source repo
doCheck = false;
meta = with lib; {