From 5f85210b929bb95b0926204bafa37ba90a30b4bd Mon Sep 17 00:00:00 2001 From: James Simpson Date: Wed, 9 Dec 2020 17:36:09 -0500 Subject: [PATCH] just: 0.7.1 -> 0.8.3 --- pkgs/development/tools/just/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/just/default.nix b/pkgs/development/tools/just/default.nix index ebf44d9d699..05b2b50f26f 100644 --- a/pkgs/development/tools/just/default.nix +++ b/pkgs/development/tools/just/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "just"; - version = "0.7.1"; + version = "0.8.3"; src = fetchFromGitHub { owner = "casey"; repo = pname; rev = "v${version}"; - sha256 = "07fjixz8y5rxfwpyr1kiimnn27jhc20gacd17i0yvfcpy5qf8z5p"; + sha256 = "4B72VYQ+HBvhGQNl577DuZpvWNIvv/6fejRQtVKtFKY="; }; - cargoSha256 = "1zn0kiqi8p25lscjd661gczay631nwzadl36cfzqnbww6blayy1j"; + cargoSha256 = "uOOpDRWPSoH49NTu82rDxxDR/2icoe4ECxVQb/J/45w="; nativeBuildInputs = [ installShellFiles ]; @@ -38,9 +38,9 @@ rustPlatform.buildRustPackage rec { -e "s@#!/usr/bin/env bash@#!${bash}/bin/sh@g" ''; - # Skip "edit" when running "cargo test", - # since this test case needs "cat". - checkFlagsArray = [ "--skip=edit" ]; + # Skip "edit" when running "cargo test", since this test case needs "cat". + # Skip "choose" when running "cargo test", since this test case needs "fzf". + checkFlags = [ "--skip=choose" "--skip=edit" ]; meta = with stdenv.lib; { description = "A handy way to save and run project-specific commands";