From 0899228da382826f6b257ae656d08daf838fe6e6 Mon Sep 17 00:00:00 2001 From: 2kybe3 Date: Sun, 10 May 2026 12:10:01 +0200 Subject: [PATCH] just: 0.50.0 -> 0.51.0 Diff: https://github.com/casey/just/compare/1.50.0...1.51.0 Changelog: https://github.com/casey/just/releases/tag/1.51.0 --- pkgs/by-name/ju/just/package.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ju/just/package.nix b/pkgs/by-name/ju/just/package.nix index 5abbadc5b51b..045f45d4e8d2 100644 --- a/pkgs/by-name/ju/just/package.nix +++ b/pkgs/by-name/ju/just/package.nix @@ -17,7 +17,7 @@ withDocumentation ? stdenv.buildPlatform.canExecute stdenv.hostPlatform, }: let - version = "1.50.0"; + version = "1.51.0"; in rustPlatform.buildRustPackage { inherit version; @@ -30,14 +30,16 @@ rustPlatform.buildRustPackage { ] ++ lib.optionals withDocumentation [ "doc" ]; + __structuredAttrs = true; + src = fetchFromGitHub { owner = "casey"; repo = "just"; tag = version; - hash = "sha256-2hq7lgjL4XbcaaWxuDfqU0UcC4DRYKL6WFjdnb5AmjY="; + hash = "sha256-urD9R/qn7rwtzaVP65angk7z4bwxlP3w5G5Aa5tVmuw="; }; - cargoHash = "sha256-tKeVE5BpDvElnpN/CO6lOqDUwhWD1dGm7k51Z3wAviE="; + cargoHash = "sha256-war9yybsyfsm/wNlY+/fiN8pxxQwNLMogqe5u+jHNaw="; nativeBuildInputs = lib.optionals (installShellCompletions || installManPages) [ installShellFiles ]