Skip to content

Commit

Permalink
fix(nix/pkgs/spin-plugin): Fix manifest os field mapping
Browse files Browse the repository at this point in the history
The [implementation][0] uses `macos`, not `osx`. Also SIP006 uses
`macos` in one of the example URLs. Additionally, the authoritative
`spin-plugin-manifest-schema-0.1.json` was [updated][1] as well.

PR to fix the typo upstream: spinframework/spin#3011

[0]: https://github.com/fermyon/spin/blob/v3.1.2/crates/plugins/src/manifest.rs#L113
[1]: spinframework/spin-plugins#10
  • Loading branch information
PetarKirov committed Feb 13, 2025
1 parent c14818d commit a5cc66c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/pkgs/spin-plugin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ let
os =
{
linux = "linux";
darwin = "osx";
darwin = "macos";
}
.${hostPlatform.parsed.kernel.name};

Expand Down

0 comments on commit a5cc66c

Please sign in to comment.