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

60 lines
1.7 KiB
Nix
Raw Normal View History

2021-04-24 01:47:37 +00:00
{ lib, fetchFromGitHub, stdenv, rustPlatform, coreutils, bash, installShellFiles, libiconv }:
2019-04-11 10:15:03 +00:00
rustPlatform.buildRustPackage rec {
pname = "just";
2021-04-27 17:49:28 +00:00
version = "0.9.1";
2019-04-11 10:15:03 +00:00
src = fetchFromGitHub {
owner = "casey";
repo = pname;
rev = "v${version}";
2021-04-27 17:49:28 +00:00
sha256 = "sha256-5W/5HgXjDmr2JGYGy5FPmCNIuAagmzEHnskDUg+FzjY=";
2019-04-11 10:15:03 +00:00
};
2021-04-27 17:49:28 +00:00
cargoSha256 = "sha256-4lLWtj/MLaSZU7nC4gVn7TyhaLtO1FUSinQejocpiuY=";
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-05-04 12:31:20 +00:00
postInstall = ''
installManPage man/just.1
2020-04-09 02:43:04 +00:00
installShellCompletion --cmd just \
--bash completions/just.bash \
--fish completions/just.fish \
--zsh completions/just.zsh
2020-04-09 02:43:04 +00:00
'';
2019-04-11 10:15:03 +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-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 sh@#!${bash}/bin/sh@g" \
2020-04-09 02:43:04 +00:00
-e "s@#!/usr/bin/env cat@#!${coreutils}/bin/cat@g" \
-e "s@#!/usr/bin/env bash@#!${bash}/bin/sh@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-04-27 17:49:28 +00:00
# Skip "edit" when running "cargo test", since this test case needs "cat" and "vim".
2020-12-09 22:36:09 +00:00
# Skip "choose" when running "cargo test", since this test case needs "fzf".
checkFlags = [ "--skip=choose" "--skip=edit" ];
2019-04-11 10:15:03 +00:00
meta = with lib; {
2019-04-11 10:15:03 +00:00
description = "A handy way to save and run project-specific commands";
homepage = "https://github.com/casey/just";
2019-04-11 10:15:03 +00:00
license = licenses.cc0;
maintainers = with maintainers; [ xrelkd ];
};
}