pixi-pack: 0.5.0 -> 0.6.2

This commit is contained in:
ZHAO Jin-Xiang
2025-05-05 21:18:32 +08:00
parent de8b819510
commit 86ab244413
+7 -7
View File
@@ -8,19 +8,19 @@
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "pixi-pack";
version = "0.5.0";
version = "0.6.2";
src = fetchFromGitHub {
owner = "Quantco";
repo = "pixi-pack";
tag = "v${version}";
hash = "sha256-th7hlxjnar9VoWINpxblzUGbxxz8hPKmLERd1y+mHKY=";
tag = "v${finalAttrs.version}";
hash = "sha256-ccKJtGKhfYiJm8/2yOlCZtRECvax1dTgtNOtabzfhI4=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-AEqhJWztOI4byViex4d0m85wBlGGYMykPNjgUfPAt6Q=";
cargoHash = "sha256-+rwG9lPK0Ec7CCtVccwGrFOqfZqeXNA3WsN1QivABQA=";
buildInputs = [ openssl ];
@@ -43,11 +43,11 @@ rustPlatform.buildRustPackage rec {
meta = {
description = "Pack and unpack conda environments created with pixi";
homepage = "https://github.com/Quantco/pixi-pack";
changelog = "https://github.com/Quantco/pixi-pack/releases/tag/v${version}";
changelog = "https://github.com/Quantco/pixi-pack/releases/tag/v${finalAttrs.version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
xiaoxiangmoe
];
mainProgram = "pixi-pack";
};
}
})