Merge pull request #216594 from Nintron27/function-runner-3.2.2

function-runner: init at 3.2.2
This commit is contained in:
Nick Cao 2023-02-16 16:56:48 +08:00 committed by GitHub
commit 933d602396
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 30 additions and 0 deletions

View file

@ -10529,6 +10529,12 @@
github = "nikstur";
githubId = 61635709;
};
nintron = {
email = "nintron@sent.com";
github = "Nintron27";
githubId = 47835714;
name = "Nintron";
};
ngerstle = {
name = "Nicholas Gerstle";
email = "ngerstle@gmail.com";

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

@ -19721,6 +19721,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 { };