From 10a501ae6bb53037004c7b7bc86f6834b92e66b9 Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Wed, 20 Dec 2023 03:07:39 +0000 Subject: [PATCH] just: 1.16.0 -> 1.17.0 --- pkgs/development/tools/just/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/just/default.nix b/pkgs/development/tools/just/default.nix index 732bd8d43f2b..4dea1df99700 100644 --- a/pkgs/development/tools/just/default.nix +++ b/pkgs/development/tools/just/default.nix @@ -3,7 +3,6 @@ , fetchFromGitHub , rustPlatform , coreutils -, bash , installShellFiles , libiconv , mdbook @@ -12,17 +11,17 @@ rustPlatform.buildRustPackage rec { pname = "just"; - version = "1.16.0"; + version = "1.17.0"; outputs = [ "out" "man" "doc" ]; src = fetchFromGitHub { owner = "casey"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-lXZCRoTVIguufyhHn7h4vAajG53qIn8AeDBZuha6be8="; + hash = "sha256-tT8WNenYTLL5dGrRbhfASRMEcyuoHS7RNXpMX/GG+wE="; }; - cargoHash = "sha256-+r8fcoG23p7ug3xireAnUvJHiB/PXAUzBAKowGqKN8E="; + cargoHash = "sha256-1R2kl5E5OU3U38LfcBzlvth4bBpVVnbXiet2N5LNNZk="; nativeBuildInputs = [ installShellFiles mdbook ]; buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];