-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Pixi * Add Pixi libc * Fix Pixi libc * Revert Pixi libc (it only has a musl build on Linux)
- Loading branch information
Showing
4 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# pixi plugin | ||
|
||
[pixi](https://github.com/prefix-dev/pixi) plugin for [proto](https://github.com/moonrepo/proto). | ||
|
||
## Installation | ||
|
||
This is a community plugin and is thus not built-in to proto. In order to use it, first either add it to your global or project-based `.prototools` by running: | ||
|
||
### Global install | ||
|
||
```shell | ||
proto plugin add pixi "source:https://raw.githubusercontent.com/Phault/proto-toml-plugins/main/pixi/plugin.toml" --global | ||
proto install pixi | ||
``` | ||
|
||
### Per-project install | ||
|
||
```shell | ||
proto plugin add pixi "source:https://raw.githubusercontent.com/Phault/proto-toml-plugins/main/pixi/plugin.toml" | ||
proto pin pixi latest --resolve | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name = "pixi" | ||
type = "cli" | ||
|
||
[resolve] | ||
git-url = "https://github.com/prefix-dev/pixi" | ||
|
||
[platform.linux] | ||
download-file = "pixi-{arch}-unknown-linux-musl.tar.gz" | ||
|
||
[platform.macos] | ||
download-file = "pixi-{arch}-apple-darwin.tar.gz" | ||
|
||
[platform.windows] | ||
download-file = "pixi-{arch}-pc-windows-msvc.zip" | ||
|
||
[install] | ||
download-url = "https://github.com/prefix-dev/pixi/releases/download/v{version}/{download_file}" |