3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/just/default.nix

62 lines
1.7 KiB
Nix
Raw Normal View History

2020-06-24 09:16:01 +01:00
{ stdenv, fetchFromGitHub, rustPlatform, coreutils, bash, installShellFiles }:
2019-04-11 11:15:03 +01:00
rustPlatform.buildRustPackage rec {
pname = "just";
2020-06-24 09:16:01 +01:00
version = "0.6.0";
2019-04-11 11:15:03 +01:00
src = fetchFromGitHub {
owner = "casey";
repo = pname;
rev = "v${version}";
2020-06-24 09:16:01 +01:00
sha256 = "1sl235wr4fdsw0f0x7jynv6ljhvgis4d87xzpvjzajhdaappdp8d";
2019-04-11 11:15:03 +01:00
};
2020-06-24 09:16:01 +01:00
cargoSha256 = "0k3aqwvdm95403s279gkksklnikgyjpf5qvngsvsrm5xqda438jk";
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";
homepage = "https://github.com/casey/just";
2019-04-11 11:15:03 +01:00
license = licenses.cc0;
maintainers = with maintainers; [ xrelkd ];
platforms = platforms.all;
};
}