nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / by-name / fu / function-runner / package.nix
blobc70677e9d0afc266d78845f9ffa9fb7d0d56ab93
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "function-runner";
5   version = "6.3.0";
7   src = fetchFromGitHub {
8     owner = "Shopify";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-DJX9P3Dauzc8qrpvqIGgr85gwIPeYwVDyFlIVh1RIq0=";
12   };
14   cargoHash = "sha256-rlQGAHISrLuXTsoM9RWRD3roQi/sgU6BPBlOj0ecgn4=";
16   meta = with lib; {
17     description = "CLI tool which allows you to run Wasm Functions intended for the Shopify Functions infrastructure";
18     mainProgram = "function-runner";
19     homepage = "https://github.com/Shopify/function-runner";
20     license = licenses.asl20;
21     maintainers = with maintainers; [ nintron ];
22   };