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

52 lines
1.5 KiB
Nix
Raw Normal View History

2020-06-24 10:16:01 +02:00
{ stdenv, fetchFromGitHub, rustPlatform, coreutils, bash, installShellFiles }:
2019-04-11 12:15:03 +02:00
rustPlatform.buildRustPackage rec {
pname = "just";
2020-07-23 11:15:49 +02:00
version = "0.7.1";
2019-04-11 12:15:03 +02:00
src = fetchFromGitHub {
owner = "casey";
repo = pname;
rev = "v${version}";
2020-07-23 11:15:49 +02:00
sha256 = "07fjixz8y5rxfwpyr1kiimnn27jhc20gacd17i0yvfcpy5qf8z5p";
2019-04-11 12:15:03 +02:00
};
2020-07-23 11:15:49 +02:00
cargoSha256 = "1zn0kiqi8p25lscjd661gczay631nwzadl36cfzqnbww6blayy1j";
2020-04-09 04:43:04 +02:00
2020-05-04 14:31:20 +02:00
nativeBuildInputs = [ installShellFiles ];
2020-04-09 04:43:04 +02:00
2020-05-04 14:31:20 +02:00
postInstall = ''
installManPage man/just.1
2020-04-09 04:43:04 +02:00
2020-05-04 14:31:20 +02: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 04:43:04 +02:00
'';
2019-04-11 12:15:03 +02:00
2020-06-23 11:12:50 +02:00
checkInputs = [ coreutils bash ];
2019-04-11 12:15:03 +02:00
preCheck = ''
# USER must not be empty
export USER=just-user
export USERNAME=just-user
sed -i src/justfile.rs \
2020-04-09 04:43:04 +02:00
-i tests/*.rs \
2019-04-11 12:15:03 +02:00
-e "s@/bin/echo@${coreutils}/bin/echo@g" \
-e "s@#!/usr/bin/env sh@#!${bash}/bin/sh@g" \
2020-04-09 04:43:04 +02: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".
2020-07-23 11:15:49 +02:00
checkFlagsArray = [ "--skip=edit" ];
2019-04-11 12:15:03 +02: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 12:15:03 +02:00
license = licenses.cc0;
maintainers = with maintainers; [ xrelkd ];
};
}