function-runner: init at 3.2.2
This commit is contained in:
parent
3fa7016274
commit
d4bdf1a05d
2 changed files with 24 additions and 0 deletions
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -19723,6 +19723,8 @@ with pkgs;
|
||||||
|
|
||||||
funambol = callPackage ../development/libraries/funambol { };
|
funambol = callPackage ../development/libraries/funambol { };
|
||||||
|
|
||||||
|
function-runner = callPackage ../development/web/function-runner { };
|
||||||
|
|
||||||
functionalplus = callPackage ../development/libraries/functionalplus { };
|
functionalplus = callPackage ../development/libraries/functionalplus { };
|
||||||
|
|
||||||
galer = callPackage ../tools/security/galer { };
|
galer = callPackage ../tools/security/galer { };
|
||||||
|
|
Loading…
Reference in a new issue