pixi: 0.15.2 -> 0.17.1

This commit is contained in:
Aaron Jheng
2024-03-22 09:45:31 +08:00
parent b2f2956473
commit 9a05581e2c
2 changed files with 6330 additions and 5 deletions
+6312
View File
File diff suppressed because it is too large Load Diff
+18 -5
View File
@@ -3,6 +3,7 @@
, rustPlatform
, fetchFromGitHub
, pkg-config
, libgit2
, openssl
, installShellFiles
, darwin
@@ -12,16 +13,23 @@
rustPlatform.buildRustPackage rec {
pname = "pixi";
version = "0.15.2";
version = "0.17.1";
src = fetchFromGitHub {
owner = "prefix-dev";
repo = "pixi";
rev = "v${version}";
hash = "sha256-bh8Uu6Q2AND50Qzivc6k1Z8JWudkHC2i4YW1Hxa69SM=";
hash = "sha256-wYk77i/33J+VJeT+Bi3L8DJv9quP7VJkcq3voA6U/1s=";
};
cargoHash = "sha256-yMIcPwnuN7F2ZrOtJw8T+nxeSzLsYn+iC34bYeWpi/w=";
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"async_zip-0.0.16" = "sha256-M94ceTCtyQc1AtPXYrVGplShQhItqZZa/x5qLiL+gs0=";
"cache-key-0.0.1" = "sha256-CvaYXtgd8eqzPNoXukjPwaoT/QOlUVKYNzD8Db6on9Q=";
"pubgrub-0.2.1" = "sha256-1teDXUkXPbL7LZAYrlm2w5CEyb8g0bDqNhg5Jn0/puc=";
};
};
nativeBuildInputs = [
pkg-config
@@ -29,12 +37,17 @@ rustPlatform.buildRustPackage rec {
];
buildInputs = [
libgit2
openssl
]
++ lib.optionals stdenv.isDarwin (
] ++ lib.optionals stdenv.isDarwin (
with darwin.apple_sdk_11_0.frameworks; [ CoreFoundation IOKit SystemConfiguration Security ]
);
env = {
LIBGIT2_NO_VENDOR = 1;
OPENSSL_NO_VENDOR = 1;
};
# There are some CI failures with Rattler. Tests on Aarch64 has been skipped.
# See https://github.com/prefix-dev/pixi/pull/241.
doCheck = !stdenv.isAarch64;