toxic: 0.15.1 -> 0.16.0
[NixPkgs.git] / pkgs / by-name / ju / just / package.nix
bloba7a504bc7c00642b988f475c9dc83bdc9a8d2a57
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   rustPlatform,
6   bashInteractive,
7   coreutils,
8   installShellFiles,
9   libiconv,
10   mdbook,
11   nix-update-script,
14 rustPlatform.buildRustPackage rec {
15   pname = "just";
16   version = "1.38.0";
17   outputs = [
18     "out"
19     "man"
20     "doc"
21   ];
23   src = fetchFromGitHub {
24     owner = "casey";
25     repo = pname;
26     rev = "refs/tags/${version}";
27     hash = "sha256-jIc8+SFAcH2TsY12+txwlMoJmpDdDpC0H+UrjYH61Lk=";
28   };
30   cargoHash = "sha256-JHLkjMy5b1spJrAqFCCzqgnlYTAKA1Z9Tx4w1WWuiAI=";
32   nativeBuildInputs = [
33     installShellFiles
34     mdbook
35   ];
36   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ libiconv ];
38   preCheck = ''
39     # USER must not be empty
40     export USER=just-user
41     export USERNAME=just-user
42     export JUST_CHOOSER="${coreutils}/bin/cat"
44     # Prevent string.rs from being changed
45     cp tests/string.rs $TMPDIR/string.rs
47     sed -i src/justfile.rs \
48         -i tests/*.rs \
49         -e "s@/bin/echo@${coreutils}/bin/echo@g" \
50         -e "s@/usr/bin/env@${coreutils}/bin/env@g"
52     # Return unchanged string.rs
53     cp $TMPDIR/string.rs tests/string.rs
55     # For shell completion tests
56     export PATH=${bashInteractive}/bin:$PATH
57     patchShebangs tests
58   '';
60   patches = [
61     ./fix-just-path-in-tests.patch
62   ];
64   postBuild = ''
65     cargo run --package generate-book
67     mkdir -p completions man
69     cargo run -- --man > man/just.1
71     for shell in bash fish zsh; do
72         cargo run -- --completions $shell > completions/just.$shell
73     done
75     # No linkcheck in sandbox
76     echo 'optional = true' >> book/en/book.toml
77     mdbook build book/en
78     find .
79   '';
81   checkFlags = [
82     "--skip=backticks::trailing_newlines_are_stripped" # Wants to use python3 as alternate shell
83     "--skip=choose::invoke_error_function" # wants JUST_CHOOSER to be fzf
84     "--skip=choose::default" # symlinks cat->fzf which fails as coreutils doesn't understand name
85     "--skip=config::tests::show_arguments" # interferes with JUST_CHOOSER being set
86     "--skip=edit::editor_precedence" # 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
87     "--skip=shebang::run_shebang" # test case very rarely fails with "Text file busy"
88   ];
90   postInstall = ''
91     mkdir -p $doc/share/doc/$name
92     mv ./book/en/build/html $doc/share/doc/$name
93     installManPage man/just.1
95     installShellCompletion --cmd just \
96       --bash completions/just.bash \
97       --fish completions/just.fish \
98       --zsh completions/just.zsh
99   '';
101   setupHook = ./setup-hook.sh;
103   passthru.updateScript = nix-update-script { };
105   meta = with lib; {
106     homepage = "https://github.com/casey/just";
107     changelog = "https://github.com/casey/just/blob/${version}/CHANGELOG.md";
108     description = "Handy way to save and run project-specific commands";
109     license = licenses.cc0;
110     maintainers = with maintainers; [
111       xrelkd
112       jk
113     ];
114     mainProgram = "just";
115   };