about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-02-12 21:40:46 +0800
committerGitHub <noreply@github.com>2022-02-12 21:40:46 +0800
commit5609f3eb665f759b33e29d5fd17c53249695c2dc (patch)
tree15c814432445569089e2ef9837b3e267bff48bf5 /pkgs/development
parent29d169b4282bfc76af261109c39e46a743cdf1f8 (diff)
parentd5437800e016b443027f57087e389138420bf8cf (diff)
Merge pull request #159430 from r-ryantm/auto-update/just
just: 0.10.7 -> 0.11.0
Diffstat (limited to 'pkgs/development')
-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 410660cb459da..69ba88905ffa7 100644
--- a/pkgs/development/tools/just/default.nix
+++ b/pkgs/development/tools/just/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "just";
-  version = "0.10.7";
+  version = "0.11.0";
 
   src = fetchFromGitHub {
     owner = "casey";
     repo = pname;
     rev = version;
-    sha256 = "sha256-53dyy/jpmQCjOoZ9Wvec0iQMWKVVrt1WQDCGhXH53Mg=";
+    sha256 = "sha256-QQ0qRzbbH6lGjW50T67dXU7MLnEw3C9dcJ6ZlnSeh/U=";
   };
 
-  cargoSha256 = "sha256-cDwuhOJ5/SFCQKJqmN6rPYahW/ctjE0hFr6SpgVzyis=";
+  cargoSha256 = "sha256-ZTfaRU1f0K/wprbDxba07cesgP70ZGR1xwwuyhdtTKw=";
 
   nativeBuildInputs = [ installShellFiles ];
   buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];