Merge pull request #216594 from Nintron27/function-runner-3.2.2
function-runner: init at 3.2.2
This commit is contained in:
commit
933d602396
3 changed files with 30 additions and 0 deletions
|
@ -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";
|
||||
|
|
22
pkgs/development/web/function-runner/default.nix
Normal file
22
pkgs/development/web/function-runner/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue