pixi: 0.40.3 -> 0.42.1 (#383075)

This commit is contained in:
Gaétan Lepage
2025-03-06 09:50:44 +01:00
committed by GitHub
+6 -6
View File
@@ -12,19 +12,19 @@
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "pixi";
version = "0.40.3";
version = "0.42.1";
src = fetchFromGitHub {
owner = "prefix-dev";
repo = "pixi";
tag = "v${version}";
hash = "sha256-PxG5bbHcpPOc4wAqxsiGkw1NeS3ya4/cZcDSg4LgX6Q=";
tag = "v${finalAttrs.version}";
hash = "sha256-ixA/vgnLF7sStooD0zkaTUoTIK1flQuqsruZVc9HbEI=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-0jWtbCcj4BTCBuW+KenBG/MCcRWWn8WHrTEJdkIyMes=";
cargoHash = "sha256-CJ4FCKYZQe0uCJo7XPzTPHViW3gDrJkacWczBkfctWY=";
nativeBuildInputs = [
pkg-config
@@ -76,4 +76,4 @@ rustPlatform.buildRustPackage rec {
];
mainProgram = "pixi";
};
}
})