From 7d55588b6de718d5ce1992f785290b1fe4534431 Mon Sep 17 00:00:00 2001 From: "UENO, M." Date: Sun, 11 Jan 2026 04:58:41 +0000 Subject: [PATCH 1/2] pixi: create template --- srcpkgs/pixi/template | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 srcpkgs/pixi/template diff --git a/srcpkgs/pixi/template b/srcpkgs/pixi/template new file mode 100644 index 00000000000000..e51b6e30d35519 --- /dev/null +++ b/srcpkgs/pixi/template @@ -0,0 +1,24 @@ +# Template file for 'pixi' +pkgname=pixi +version=0.62.2 +revision=1 +build_style=cargo +make_install_args="--path crates/pixi" +hostmakedepends="cargo-auditable cmake nushell pkg-config" +makedepends="libzstd-devel" +short_desc="A cross-platform, multi-language package manager and workflow tool build on the shoulders of the conda ecosystem" +maintainer="UENO, M. " +license="BSD-3-Clause" +homepage="https://github.com/prefix-dev/pixi" +changelog="https://github.com/prefix-dev/pixi/blob/v${version}/CHANGELOG.md" +distfiles="https://github.com/prefix-dev/pixi/archive/refs/tags/v${version}.tar.gz" +checksum=dba8db9c836a3bf3c6054588f4334150fe3bb7b4960c778e76f4001a18fa8e2f + +post_install() { + vlicense LICENSE + + for shell in bash fish zsh; do + ${DESTDIR}/usr/bin/pixi completion -s ${shell} > pixi.${shell} + vcompletion pixi.${shell} ${shell} + done +} From d086232e4f79643d79a88e5b0df4ab4047c90828 Mon Sep 17 00:00:00 2001 From: "UENO, M." Date: Wed, 21 Jan 2026 03:15:21 +0900 Subject: [PATCH 2/2] Update short description for pixi package --- srcpkgs/pixi/template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srcpkgs/pixi/template b/srcpkgs/pixi/template index e51b6e30d35519..0df89d641d4355 100644 --- a/srcpkgs/pixi/template +++ b/srcpkgs/pixi/template @@ -6,7 +6,7 @@ build_style=cargo make_install_args="--path crates/pixi" hostmakedepends="cargo-auditable cmake nushell pkg-config" makedepends="libzstd-devel" -short_desc="A cross-platform, multi-language package manager and workflow tool build on the shoulders of the conda ecosystem" +short_desc="Fast conda & PyPI package manager" maintainer="UENO, M. " license="BSD-3-Clause" homepage="https://github.com/prefix-dev/pixi"