7d542a9f98
GitOrigin-RevId: b72b8b94cf0c012b0252a9100a636cad69696666
50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, stdenv
|
|
, Security
|
|
, cargo-watch
|
|
, zig
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-lambda";
|
|
version = "0.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-JwrTwCn4qXcjXjy4cPYM3WCblJS0J5Xxnc6WESMwCpU=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-p3q5S6IFQQgNp/MHGSUE1DVLFyMLWDTv/dxrUACKSWo=";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
checkFlags = [
|
|
# Disabled because it accesses the network.
|
|
"--skip=test_download_example"
|
|
];
|
|
|
|
# remove date from version output to make reproducible
|
|
postPatch = ''
|
|
rm crates/cargo-lambda-cli/build.rs
|
|
'';
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/cargo-lambda --prefix PATH : ${lib.makeBinPath [ cargo-watch zig ]}
|
|
'';
|
|
|
|
CARGO_LAMBDA_BUILD_INFO = "(nixpkgs)";
|
|
|
|
meta = with lib; {
|
|
description = "A Cargo subcommand to help you work with AWS Lambda";
|
|
homepage = "https://cargo-lambda.info";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ taylor1791 calavera ];
|
|
};
|
|
}
|