Skip to content

Commit

Permalink
Merge pull request #93696 from dywedir/just
Browse files Browse the repository at this point in the history
just: 0.6.0 -> 0.7.1
  • Loading branch information
danieldk committed Jul 23, 2020
2 parents d5e90de + 4973d19 commit 2acbca9
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions pkgs/development/tools/just/default.nix
Expand Up @@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "just";
version = "0.6.0";
version = "0.7.1";

src = fetchFromGitHub {
owner = "casey";
repo = pname;
rev = "v${version}";
sha256 = "1sl235wr4fdsw0f0x7jynv6ljhvgis4d87xzpvjzajhdaappdp8d";
sha256 = "07fjixz8y5rxfwpyr1kiimnn27jhc20gacd17i0yvfcpy5qf8z5p";
};

cargoSha256 = "0k3aqwvdm95403s279gkksklnikgyjpf5qvngsvsrm5xqda438jk";
cargoSha256 = "1zn0kiqi8p25lscjd661gczay631nwzadl36cfzqnbww6blayy1j";

nativeBuildInputs = [ installShellFiles ];

Expand Down Expand Up @@ -40,16 +40,7 @@ rustPlatform.buildRustPackage rec {

# 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
'';
checkFlagsArray = [ "--skip=edit" ];

meta = with stdenv.lib; {
description = "A handy way to save and run project-specific commands";
Expand Down

0 comments on commit 2acbca9

Please sign in to comment.