Merge pull request #199963 from calavera/cargo-lambda.0.11.3

cargo-lambda: 0.11.2 -> 0.11.3

authored by figsoda and committed by GitHub 81b449ab 3ec797ef

+11 -4
+7
maintainers/maintainer-list.nix
··· 2156 githubId = 51231053; 2157 name = "Daniel"; 2158 }; 2159 callahad = { 2160 email = "dan.callahan@gmail.com"; 2161 github = "callahad";
··· 2156 githubId = 51231053; 2157 name = "Daniel"; 2158 }; 2159 + calavera = { 2160 + email = "david.calavera@gmail.com"; 2161 + github = "calavera"; 2162 + githubId = 1050; 2163 + matrix = "@davidcalavera:matrix.org"; 2164 + name = "David Calavera"; 2165 + }; 2166 callahad = { 2167 email = "dan.callahan@gmail.com"; 2168 github = "callahad";
+4 -4
pkgs/development/tools/rust/cargo-lambda/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-lambda"; 5 - version = "0.11.2"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-IK4HVj8Y8Vz+mza8G9C+m5JRfNT3BWWdlbQQkJPu6RI="; 12 }; 13 14 - cargoSha256 = "sha256-oSqoSvv8IiChtduQQA31wItHcsnRBAQgOCrQN4sjcx8="; 15 16 buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 17 ··· 32 description = "A Cargo subcommand to help you work with AWS Lambda"; 33 homepage = "https://cargo-lambda.info"; 34 license = licenses.mit; 35 - maintainers = with maintainers; [ taylor1791 ]; 36 }; 37 }
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "cargo-lambda"; 5 + version = "0.11.3"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-dEJOoV91DIQL7KPbLQrgCKdCF7ZMSZMHVLq6l1sg4F0="; 12 }; 13 14 + cargoSha256 = "sha256-qW4a4VPpPSdt0Z4nRA4/fHpW0cfDxOPQyEAdJidt+0o="; 15 16 buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 17 ··· 32 description = "A Cargo subcommand to help you work with AWS Lambda"; 33 homepage = "https://cargo-lambda.info"; 34 license = licenses.mit; 35 + maintainers = with maintainers; [ taylor1791 calavera ]; 36 }; 37 }