Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / web / function-runner / default.nix
blobbd2ad2862cd7e7fa5a49f48b8af42ffd244c77ce
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "function-runner";
5   version = "4.0.0";
7   src = fetchFromGitHub {
8     owner = "Shopify";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-cKlzv9mL6UGXHvYbQR4OcZgdjZLV5Q7EoQbW7Fx8ESo=";
12   };
14   cargoHash = "sha256-/4/zaeNQ45YYBILxm11qD9rPFZxilA8kLoyWG370Knk=";
16   meta = with lib; {
17     description = "A CLI tool which allows you to run Wasm Functions intended for the Shopify Functions infrastructure";
18     homepage = "https://github.com/Shopify/function-runner";
19     license = licenses.asl20;
20     maintainers = with maintainers; [ nintron ];
21   };