mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
5eb909c68f
Diff: https://github.com/casey/just/compare/refs/tags/1.25.1...1.25.2 Changelog: https://github.com/casey/just/blob/1.25.2/CHANGELOG.md Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
87 lines
2.3 KiB
Nix
87 lines
2.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, coreutils
|
|
, installShellFiles
|
|
, libiconv
|
|
, mdbook
|
|
, nix-update-script
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "just";
|
|
version = "1.25.2";
|
|
outputs = [ "out" "man" "doc" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "casey";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-w7tHLjIFnlvyuTw5yG6zxJtQ7oDNdKRXHIRKY638vTo=";
|
|
};
|
|
|
|
cargoHash = "sha256-VL2uNbEtqOv3xmLukhdCmo3lrfx5yFwOAMGwgBlgAVw=";
|
|
|
|
nativeBuildInputs = [ installShellFiles mdbook ];
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
|
|
|
preCheck = ''
|
|
# USER must not be empty
|
|
export USER=just-user
|
|
export USERNAME=just-user
|
|
export JUST_CHOOSER="${coreutils}/bin/cat"
|
|
|
|
# Prevent string.rs from being changed
|
|
cp tests/string.rs $TMPDIR/string.rs
|
|
|
|
sed -i src/justfile.rs \
|
|
-i tests/*.rs \
|
|
-e "s@/bin/echo@${coreutils}/bin/echo@g" \
|
|
-e "s@/usr/bin/env@${coreutils}/bin/env@g"
|
|
|
|
# Return unchanged string.rs
|
|
cp $TMPDIR/string.rs tests/string.rs
|
|
'';
|
|
|
|
postBuild = ''
|
|
cargo run --package generate-book
|
|
|
|
# No linkcheck in sandbox
|
|
echo 'optional = true' >> book/en/book.toml
|
|
mdbook build book/en
|
|
find .
|
|
'';
|
|
|
|
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"
|
|
"--skip=invoke_error_function" # wants JUST_CHOOSER to be fzf
|
|
"--skip=choose::default" # symlinks cat->fzf which fails as coreutils doesn't understand name
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir -p $doc/share/doc/$name
|
|
mv ./book/en/build/html $doc/share/doc/$name
|
|
installManPage man/just.1
|
|
|
|
installShellCompletion --cmd just \
|
|
--bash completions/just.bash \
|
|
--fish completions/just.fish \
|
|
--zsh completions/just.zsh
|
|
'';
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/casey/just";
|
|
changelog = "https://github.com/casey/just/blob/${version}/CHANGELOG.md";
|
|
description = "A handy way to save and run project-specific commands";
|
|
license = licenses.cc0;
|
|
maintainers = with maintainers; [ xrelkd jk adamcstephens ];
|
|
mainProgram = "just";
|
|
};
|
|
}
|