function-runner: init at 3.2.2

This commit is contained in:
Nintron 2023-02-15 23:59:02 -05:00
parent 3fa7016274
commit d4bdf1a05d
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "function-runner";
version = "3.2.2";
src = fetchFromGitHub {
owner = "Shopify";
repo = pname;
rev = "v${version}";
sha256 = "sha256-4uW7gjvQjv10evBeYdRiQFsnA67VAzL74YBNUbVciHg=";
};
cargoSha256 = "sha256-EZubfW4PNdBurLk3YJ/BLtDq3zxkQ3YxfWMMBa2TpWU=";
meta = with lib; {
description = "A CLI tool which allows you to run Wasm Functions intended for the Shopify Functions infrastructure";
homepage = "https://github.com/Shopify/function-runner";
license = licenses.asl20;
maintainers = with maintainers; [ nintron ];
};
}

View file

@ -19723,6 +19723,8 @@ with pkgs;
funambol = callPackage ../development/libraries/funambol { };
function-runner = callPackage ../development/web/function-runner { };
functionalplus = callPackage ../development/libraries/functionalplus { };
galer = callPackage ../tools/security/galer { };