2021-04-24 02:47:37 +01:00
|
|
|
{ lib, fetchFromGitHub, stdenv, rustPlatform, coreutils, bash, installShellFiles, libiconv }:
|
2019-04-11 11:15:03 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "just";
|
2021-06-15 16:11:08 +01:00
|
|
|
version = "0.9.5";
|
2019-04-11 11:15:03 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "casey";
|
|
|
|
repo = pname;
|
2021-06-15 16:11:08 +01:00
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-fDbnOfT2BTCLF2knUf3ccDnuA0mhM+gkbja7xgmWoaY=";
|
2019-04-11 11:15:03 +01:00
|
|
|
};
|
|
|
|
|
2021-06-15 16:11:08 +01:00
|
|
|
cargoSha256 = "sha256-mBrFw5d0LXTKj7Nm8XmT5hsq/d/x84U/Gp02+lay2OY=";
|
2020-04-09 03:43:04 +01:00
|
|
|
|
2020-05-04 13:31:20 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2021-04-24 02:47:37 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
2020-04-09 03:43:04 +01:00
|
|
|
|
2020-05-04 13:31:20 +01:00
|
|
|
postInstall = ''
|
|
|
|
installManPage man/just.1
|
2020-04-09 03:43:04 +01: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 03:43:04 +01:00
|
|
|
'';
|
2019-04-11 11:15:03 +01:00
|
|
|
|
2020-06-23 10:12:50 +01:00
|
|
|
checkInputs = [ coreutils bash ];
|
2019-04-11 11:15:03 +01:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
# USER must not be empty
|
|
|
|
export USER=just-user
|
|
|
|
export USERNAME=just-user
|
2021-06-07 16:33:35 +01:00
|
|
|
export JUST_CHOOSER="${coreutils}/bin/cat"
|
2019-04-11 11:15:03 +01:00
|
|
|
|
2021-04-27 18:49:28 +01:00
|
|
|
# Prevent string.rs from being changed
|
|
|
|
cp tests/string.rs $TMPDIR/string.rs
|
|
|
|
|
2019-04-11 11:15:03 +01:00
|
|
|
sed -i src/justfile.rs \
|
2020-04-09 03:43:04 +01:00
|
|
|
-i tests/*.rs \
|
2019-04-11 11:15:03 +01:00
|
|
|
-e "s@/bin/echo@${coreutils}/bin/echo@g" \
|
2021-06-07 16:33:35 +01:00
|
|
|
-e "s@/usr/bin/env@${coreutils}/bin/env@g"
|
2021-04-27 18:49:28 +01:00
|
|
|
|
|
|
|
# Return unchanged string.rs
|
|
|
|
cp $TMPDIR/string.rs tests/string.rs
|
2020-04-09 03:43:04 +01:00
|
|
|
'';
|
|
|
|
|
2021-06-07 16:33:35 +01: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"
|
|
|
|
];
|
2019-04-11 11:15:03 +01:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/casey/just";
|
2021-06-07 16:33:35 +01:00
|
|
|
changelog = "https://github.com/casey/just/blob/v${version}/CHANGELOG.md";
|
|
|
|
description = "A handy way to save and run project-specific commands";
|
2019-04-11 11:15:03 +01:00
|
|
|
license = licenses.cc0;
|
2021-06-07 16:33:35 +01:00
|
|
|
maintainers = with maintainers; [ xrelkd jk ];
|
2019-04-11 11:15:03 +01:00
|
|
|
};
|
|
|
|
}
|