mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
105 lines
2.6 KiB
Nix
105 lines
2.6 KiB
Nix
{
|
|
lib,
|
|
nix-update-script,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
stdenv,
|
|
coreutils,
|
|
bash,
|
|
direnv,
|
|
git,
|
|
pkg-config,
|
|
openssl,
|
|
Security,
|
|
SystemConfiguration,
|
|
usage,
|
|
mise,
|
|
testers,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "mise";
|
|
version = "2024.10.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jdx";
|
|
repo = "mise";
|
|
rev = "v${version}";
|
|
hash = "sha256-58y7jx7gmWlccezZXP5hSzrvnq8hlZ1QakF+FMgbwcc=";
|
|
};
|
|
|
|
cargoHash = "sha256-m2Eiqyh/rGgwRgRArs3fPWoqzi1EidZd5i66yi4SuFo=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
pkg-config
|
|
];
|
|
buildInputs =
|
|
[ openssl ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
Security
|
|
SystemConfiguration
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs --build \
|
|
./test/data/plugins/**/bin/* \
|
|
./src/fake_asdf.rs \
|
|
./src/cli/generate/git_pre_commit.rs \
|
|
./src/cli/generate/snapshots/*.snap
|
|
|
|
substituteInPlace ./src/test.rs \
|
|
--replace-fail '/usr/bin/env bash' '${lib.getExe bash}' \
|
|
--replace-fail '"git"' '"${lib.getExe git}"'
|
|
|
|
substituteInPlace ./src/git.rs \
|
|
--replace-fail '"git"' '"${lib.getExe git}"'
|
|
|
|
substituteInPlace ./src/env_diff.rs \
|
|
--replace-fail '"bash"' '"${lib.getExe bash}"'
|
|
|
|
substituteInPlace ./src/cli/direnv/exec.rs \
|
|
--replace-fail '"env"' '"${lib.getExe' coreutils "env"}"' \
|
|
--replace-fail 'cmd!("direnv"' 'cmd!("${lib.getExe direnv}"'
|
|
'';
|
|
|
|
checkFlags = [
|
|
# last_modified will always be different in nix
|
|
"--skip=tera::tests::test_last_modified"
|
|
# requires https://github.com/rbenv/ruby-build
|
|
"--skip=plugins::core::ruby::tests::test_list_versions_matching"
|
|
];
|
|
|
|
cargoTestFlags = [ "--all-features" ];
|
|
# some tests access the same folders, don't test in parallel to avoid race conditions
|
|
dontUseCargoParallelTests = true;
|
|
|
|
postInstall = ''
|
|
installManPage ./man/man1/mise.1
|
|
|
|
substituteInPlace ./completions/{mise.bash,mise.fish,_mise} \
|
|
--replace-fail '-v usage' '-v ${lib.getExe usage}' \
|
|
--replace-fail 'usage complete-word' '${lib.getExe usage} complete-word'
|
|
|
|
installShellCompletion \
|
|
--bash ./completions/mise.bash \
|
|
--fish ./completions/mise.fish \
|
|
--zsh ./completions/_mise
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests.version = testers.testVersion { package = mise; };
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://mise.jdx.dev";
|
|
description = "Front-end to your dev env";
|
|
changelog = "https://github.com/jdx/mise/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ konradmalik ];
|
|
mainProgram = "mise";
|
|
};
|
|
}
|