2023-02-16 17:41:37 +00:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "function-runner";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "6.2.1";
|
2023-02-16 17:41:37 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Shopify";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-09-19 14:19:46 +00:00
|
|
|
sha256 = "sha256-5X/d6phYXmJcCacHvGkk5o/J91SdlFamxJrqc5X/Y4Y=";
|
2023-02-16 17:41:37 +00:00
|
|
|
};
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
cargoHash = "sha256-D6BTP/a3wOpcOLnGUASyBL3pzAieAllLzEZuaEv2Oco=";
|
2023-02-16 17:41:37 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "CLI tool which allows you to run Wasm Functions intended for the Shopify Functions infrastructure";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "function-runner";
|
2023-02-16 17:41:37 +00:00
|
|
|
homepage = "https://github.com/Shopify/function-runner";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ nintron ];
|
|
|
|
};
|
|
|
|
}
|