2021-04-24 01:47:37 +00:00
|
|
|
{ lib, fetchFromGitHub, stdenv, rustPlatform, coreutils, bash, installShellFiles, libiconv }:
|
2019-04-11 10:15:03 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "just";
|
2021-11-03 06:30:55 +00:00
|
|
|
version = "0.10.3";
|
2019-04-11 10:15:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "casey";
|
|
|
|
repo = pname;
|
2021-06-15 15:11:08 +00:00
|
|
|
rev = version;
|
2021-11-03 06:30:55 +00:00
|
|
|
sha256 = "sha256-r6kP1LbT8ZQoxSuy7jpnHD2/RgcPvmTNfjKzj5ceXRc=";
|
2019-04-11 10:15:03 +00:00
|
|
|
};
|
2021-11-03 06:30:55 +00:00
|
|
|
cargoSha256 = "sha256-y6RcFH2qDoM3wWnZ6ewC9QyRD3mFsoakToRmon4bAnE=";
|
2020-04-09 02:43:04 +00:00
|
|
|
|
2020-05-04 12:31:20 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2021-04-24 01:47:37 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
2020-04-09 02:43:04 +00:00
|
|
|
|
2021-07-30 10:02:49 +00:00
|
|
|
postPatch = ''
|
|
|
|
# this hard codes the compiler, which breaks the aarch64 in particular
|
|
|
|
# we rather want to set the compiler ourself
|
|
|
|
rm .cargo/config
|
|
|
|
'';
|
|
|
|
|
2020-05-04 12:31:20 +00:00
|
|
|
postInstall = ''
|
|
|
|
installManPage man/just.1
|
2020-04-09 02:43:04 +00:00
|
|
|
|
2021-02-09 09:54:13 +00:00
|
|
|
installShellCompletion --cmd just \
|
|
|
|
--bash completions/just.bash \
|
|
|
|
--fish completions/just.fish \
|
|
|
|
--zsh completions/just.zsh
|
2020-04-09 02:43:04 +00:00
|
|
|
'';
|
2019-04-11 10:15:03 +00:00
|
|
|
|
2020-06-23 09:12:50 +00:00
|
|
|
checkInputs = [ coreutils bash ];
|
2019-04-11 10:15:03 +00:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
# USER must not be empty
|
|
|
|
export USER=just-user
|
|
|
|
export USERNAME=just-user
|
2021-06-07 15:33:35 +00:00
|
|
|
export JUST_CHOOSER="${coreutils}/bin/cat"
|
2019-04-11 10:15:03 +00:00
|
|
|
|
2021-04-27 17:49:28 +00:00
|
|
|
# Prevent string.rs from being changed
|
|
|
|
cp tests/string.rs $TMPDIR/string.rs
|
|
|
|
|
2019-04-11 10:15:03 +00:00
|
|
|
sed -i src/justfile.rs \
|
2020-04-09 02:43:04 +00:00
|
|
|
-i tests/*.rs \
|
2019-04-11 10:15:03 +00:00
|
|
|
-e "s@/bin/echo@${coreutils}/bin/echo@g" \
|
2021-06-07 15:33:35 +00:00
|
|
|
-e "s@/usr/bin/env@${coreutils}/bin/env@g"
|
2021-04-27 17:49:28 +00:00
|
|
|
|
|
|
|
# Return unchanged string.rs
|
|
|
|
cp $TMPDIR/string.rs tests/string.rs
|
2020-04-09 02:43:04 +00:00
|
|
|
'';
|
|
|
|
|
2021-06-07 15:33:35 +00:00
|
|
|
checkFlags = [
|
|
|
|
"--skip=edit" # trying to run "vim" fails as there's no /usr/bin/env or which in the sandbox to find vim and the dependency is not easily patched
|
|
|
|
"--skip=run_shebang" # test case very rarely fails with "Text file busy"
|
2021-08-20 09:09:10 +00:00
|
|
|
"--skip=invoke_error_function" # wants JUST_CHOOSER to be fzf
|
|
|
|
"--skip=status_error" # "exit status" instead of "exit code"
|
|
|
|
"--skip=exit_status" # "exit status" instead of "exit code"
|
2021-06-07 15:33:35 +00:00
|
|
|
];
|
2019-04-11 10:15:03 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/casey/just";
|
2021-06-26 20:54:10 +00:00
|
|
|
changelog = "https://github.com/casey/just/blob/${version}/CHANGELOG.md";
|
2021-06-07 15:33:35 +00:00
|
|
|
description = "A handy way to save and run project-specific commands";
|
2019-04-11 10:15:03 +00:00
|
|
|
license = licenses.cc0;
|
2021-06-07 15:33:35 +00:00
|
|
|
maintainers = with maintainers; [ xrelkd jk ];
|
2019-04-11 10:15:03 +00:00
|
|
|
};
|
|
|
|
}
|