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 ]