nixpkgs/pkgs/development/tools/just/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.8 KiB
Nix
Raw Normal View History

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";
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;
sha256 = "sha256-LDLxPNLUyDmJgnoFMMt82pt7J2qf/cBQilcCLk7xNUI=";
2019-04-11 10:15:03 +00:00
};
2022-02-01 08:57:50 +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
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" \
-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
'';
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
];
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
'';
meta = with lib; {
homepage = "https://github.com/casey/just";
2021-06-26 20:54:10 +00:00
changelog = "https://github.com/casey/just/blob/${version}/CHANGELOG.md";
description = "A handy way to save and run project-specific commands";
2019-04-11 10:15:03 +00:00
license = licenses.cc0;
maintainers = with maintainers; [ xrelkd jk ];
2019-04-11 10:15:03 +00:00
};
}