about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorAdam C. Stephens <2071575+adamcstephens@users.noreply.github.com>2024-02-12 07:38:35 -0500
committerGitHub <noreply@github.com>2024-02-12 07:38:35 -0500
commit21c960e08255be6553d7d37d9cde73919a1075d5 (patch)
tree53049b80a2cd6400005498eb206982c643e98580 /pkgs/development/tools
parentf79d3bb2134783dc7f7e65b393bced07cf9d1b39 (diff)
parent8b13b3923582375e2256e7c8f2aa03bae99f0f12 (diff)
downloadnixlib-21c960e08255be6553d7d37d9cde73919a1075d5.tar
nixlib-21c960e08255be6553d7d37d9cde73919a1075d5.tar.gz
nixlib-21c960e08255be6553d7d37d9cde73919a1075d5.tar.bz2
nixlib-21c960e08255be6553d7d37d9cde73919a1075d5.tar.lz
nixlib-21c960e08255be6553d7d37d9cde73919a1075d5.tar.xz
nixlib-21c960e08255be6553d7d37d9cde73919a1075d5.tar.zst
nixlib-21c960e08255be6553d7d37d9cde73919a1075d5.zip
Merge pull request #288181 from mfrw/mfrw/just-1.24.0
just: 1.23.0 -> 1.24.0
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 b24ddd16f4d7..991da4278499 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.23.0";
+  version = "1.24.0";
   outputs = [ "out" "man" "doc" ];
 
   src = fetchFromGitHub {
     owner = "casey";
     repo = pname;
     rev = "refs/tags/${version}";
-    hash = "sha256-GAi5wAp2o95pbjzV2Ez4BaUjLvrzEBIe9umO6Z1aGXE=";
+    hash = "sha256-S5L8efxYpsZn51JvNVeBmA1+KtzpdYcHj7OVaG4Sckc=";
   };
 
-  cargoHash = "sha256-V1S4zQ/a0IAueNt81fAaw8grk7Rm7DM0+KyzzLJg+bg=";
+  cargoHash = "sha256-wlCG3evv5VxtlfznCZSTtorZYLMiH3Wr+t6ZMq+VqFk=";
 
   nativeBuildInputs = [ installShellFiles mdbook ];
   buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];