about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-01-14 00:15:55 +0000
committerGitHub <noreply@github.com>2024-01-14 00:15:55 +0000
commit87b96a167e0e5226e717351342dbd6c3ccf59142 (patch)
treec0aa8d9478228cb7b3e631e42c3c423b19a7600f /pkgs/development/tools
parent61543d374e8fc9cadf8c7fef63b87c717bd5d22b (diff)
parent428544ae95eec077c7f823b422afae5f174dee4b (diff)
Merge release-23.11 into staging-next-23.11
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/just/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/just/default.nix b/pkgs/development/tools/just/default.nix
index 01dd6651b7f63..b24ddd16f4d7e 100644
--- a/pkgs/development/tools/just/default.nix
+++ b/pkgs/development/tools/just/default.nix
@@ -11,17 +11,17 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "just";
-  version = "1.22.1";
+  version = "1.23.0";
   outputs = [ "out" "man" "doc" ];
 
   src = fetchFromGitHub {
     owner = "casey";
     repo = pname;
     rev = "refs/tags/${version}";
-    hash = "sha256-AUK42SGRVLG8ZBauaLXpq9qlJHeS4sDNSiukZ8TMDu0=";
+    hash = "sha256-GAi5wAp2o95pbjzV2Ez4BaUjLvrzEBIe9umO6Z1aGXE=";
   };
 
-  cargoHash = "sha256-hZLiYJrXR7MWu09lw5/pwYzxKUPy7S97qKGqEnHMYW0=";
+  cargoHash = "sha256-V1S4zQ/a0IAueNt81fAaw8grk7Rm7DM0+KyzzLJg+bg=";
 
   nativeBuildInputs = [ installShellFiles mdbook ];
   buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];