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