mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
70 lines
1.5 KiB
Nix
70 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, openssl
|
|
, installShellFiles
|
|
, darwin
|
|
, testers
|
|
, pixi
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "pixi";
|
|
version = "0.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "prefix-dev";
|
|
repo = "pixi";
|
|
rev = "v${version}";
|
|
hash = "sha256-4EKJwHXNDUGhwlSSZFoPHdG5WBDoHFAQncG+CpD2sik=";
|
|
};
|
|
|
|
cargoHash = "sha256-s1ODwuYv1x5/iP8yHS5FRk5MacrW81LaXI7/J+qtPNM=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
]
|
|
++ lib.optionals stdenv.isDarwin (
|
|
with darwin.apple_sdk_11_0.frameworks; [ CoreFoundation IOKit SystemConfiguration Security ]
|
|
);
|
|
|
|
|
|
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_incremental_lock_file"
|
|
];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd pix \
|
|
--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 lib.maintainers; [ aaronjheng edmundmiller ];
|
|
mainProgram = "pixi";
|
|
};
|
|
}
|