bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
97 lines
2.4 KiB
Nix
97 lines
2.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, libgit2
|
|
, openssl
|
|
, installShellFiles
|
|
, darwin
|
|
, testers
|
|
, pixi
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "pixi";
|
|
version = "0.23.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "prefix-dev";
|
|
repo = "pixi";
|
|
rev = "v${version}";
|
|
hash = "sha256-uLlScqcTU9nnBQiufRo+eee1TNyP5R52oI1jUaH6L1M=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"async_zip-0.0.17" = "sha256-Q5fMDJrQtob54CTII3+SXHeozy5S5s3iLOzntevdGOs=";
|
|
"cache-key-0.0.1" = "sha256-fbaIeM4wgwi/3S8s9KRux8wKe6FbCBNPZFPekmrq2jA=";
|
|
"pubgrub-0.2.1" = "sha256-sqC7R2mtqymYFULDW0wSbM/MKCZc8rP7Yy/gaQpjYEI=";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs = [
|
|
libgit2
|
|
openssl
|
|
] ++ 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;
|
|
|
|
preCheck = ''
|
|
export HOME="$(mktemp -d)"
|
|
'';
|
|
|
|
checkFlags = [
|
|
# Skip tests requiring network
|
|
"--skip=add_channel"
|
|
"--skip=add_functionality"
|
|
"--skip=add_functionality_os"
|
|
"--skip=add_functionality_union"
|
|
"--skip=add_pypi_functionality"
|
|
"--skip=test_alias"
|
|
"--skip=test_cwd"
|
|
"--skip=test_compressed_mapping_catch_missing_package"
|
|
"--skip=test_compressed_mapping_catch_not_pandoc_not_a_python_package"
|
|
"--skip=test_dont_record_not_present_package_as_purl"
|
|
"--skip=test_incremental_lock_file"
|
|
"--skip=test_purl_are_added_for_pypi"
|
|
|
|
# `/usr/bin/env` required
|
|
"--skip=test_task_with_env"
|
|
"--skip=cli::shell_hook::tests::test_environment_json"
|
|
];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd pixi \
|
|
--bash <($out/bin/pixi completion --shell bash) \
|
|
--fish <($out/bin/pixi completion --shell fish) \
|
|
--zsh <($out/bin/pixi completion --shell zsh)
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = pixi;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Package management made easy";
|
|
homepage = "https://pixi.sh/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ aaronjheng edmundmiller ];
|
|
mainProgram = "pixi";
|
|
};
|
|
}
|