2020-06-23 10:12:50 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, coreutils, bash
|
2020-05-04 13:31:20 +01:00
|
|
|
, installShellFiles }:
|
2019-04-11 11:15:03 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "just";
|
2020-05-24 23:02:27 +01:00
|
|
|
version = "0.5.11";
|
2019-04-11 11:15:03 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "casey";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-05-24 23:02:27 +01:00
|
|
|
sha256 = "0li5lspxfrim8gymqzzd5djjfbfi7jh1m234qlzy5vkx2q9qg0xv";
|
2019-04-11 11:15:03 +01:00
|
|
|
};
|
|
|
|
|
2020-05-24 23:02:27 +01:00
|
|
|
cargoSha256 = "1sp8xrh3gmgmphh1bv050p1ybjybk9x8kswyxz2rd93q3zb5hpzz";
|
2020-04-09 03:43:04 +01:00
|
|
|
|
2020-05-04 13:31:20 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
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
|
|
|
|
2020-05-04 13:31:20 +01:00
|
|
|
installShellCompletion --bash --name just.bash completions/just.bash
|
|
|
|
installShellCompletion --fish --name just.fish completions/just.fish
|
|
|
|
installShellCompletion --zsh --name _just 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
|
|
|
|
|
|
|
|
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" \
|
|
|
|
-e "s@#!/usr/bin/env sh@#!${bash}/bin/sh@g" \
|
2020-04-09 03:43:04 +01:00
|
|
|
-e "s@#!/usr/bin/env cat@#!${coreutils}/bin/cat@g" \
|
|
|
|
-e "s@#!/usr/bin/env bash@#!${bash}/bin/sh@g"
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Skip "edit" when running "cargo test",
|
|
|
|
# since this test case needs "cat".
|
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
echo "Running cargo test --
|
|
|
|
--skip edit
|
|
|
|
''${checkFlags} ''${checkFlagsArray+''${checkFlagsArray[@]}}"
|
|
|
|
cargo test -- \
|
|
|
|
--skip edit \
|
|
|
|
''${checkFlags} ''${checkFlagsArray+"''${checkFlagsArray[@]}"}
|
|
|
|
runHook postCheck
|
2019-04-11 11:15:03 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A handy way to save and run project-specific commands";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/casey/just";
|
2019-04-11 11:15:03 +01:00
|
|
|
license = licenses.cc0;
|
|
|
|
maintainers = with maintainers; [ xrelkd ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|