2022-03-12 03:24:02 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, coreutils
|
|
|
|
, bash
|
|
|
|
, installShellFiles
|
|
|
|
, libiconv
|
|
|
|
}:
|
2019-04-11 10:15:03 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "just";
|
2022-08-09 17:20:44 +00:00
|
|
|
version = "1.4.0";
|
2019-04-11 10:15:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "casey";
|
|
|
|
repo = pname;
|
2021-06-15 15:11:08 +00:00
|
|
|
rev = version;
|
2022-08-09 17:20:44 +00:00
|
|
|
sha256 = "sha256-LDLxPNLUyDmJgnoFMMt82pt7J2qf/cBQilcCLk7xNUI=";
|
2019-04-11 10:15:03 +00:00
|
|
|
};
|
2022-02-01 08:57:50 +00:00
|
|
|
|
2022-08-09 17:20:44 +00:00
|
|
|
cargoSha256 = "sha256-Gg0KaFTTsBH55VyYnIA0ZHy5l55tp9xodv0zBgHdLic=";
|
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
|
|
|
|
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
|
2021-06-07 15:33:35 +00:00
|
|
|
];
|
2019-04-11 10:15:03 +00:00
|
|
|
|
2022-02-24 12:44:39 +00:00
|
|
|
postInstall = ''
|
|
|
|
installManPage man/just.1
|
|
|
|
|
|
|
|
installShellCompletion --cmd just \
|
|
|
|
--bash completions/just.bash \
|
|
|
|
--fish completions/just.fish \
|
|
|
|
--zsh completions/just.zsh
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|