about summary refs log tree commit diff
path: root/pkgs/development/tools/just
diff options
context:
space:
mode:
authorxrelkd <46590321+xrelkd@users.noreply.github.com>2022-03-12 11:24:02 +0800
committerxrelkd <46590321+xrelkd@users.noreply.github.com>2022-03-12 15:02:36 +0800
commit3c2a4bcd476047a5a3fd358620243b4dc7630b97 (patch)
tree9ecc3f59125c10521321f925ef20d9717577279f /pkgs/development/tools/just
parent963a524d9313f84d640bf59868e8df3fb8141481 (diff)
just: 1.0.1 -> 1.1.0
Diffstat (limited to 'pkgs/development/tools/just')
-rw-r--r--pkgs/development/tools/just/default.nix16
1 files changed, 12 insertions, 4 deletions
diff --git a/pkgs/development/tools/just/default.nix b/pkgs/development/tools/just/default.nix
index 050b971af94be..29694c08ed8dc 100644
--- a/pkgs/development/tools/just/default.nix
+++ b/pkgs/development/tools/just/default.nix
@@ -1,17 +1,25 @@
-{ lib, fetchFromGitHub, stdenv, rustPlatform, coreutils, bash, installShellFiles, libiconv }:
+{ lib
+, stdenv
+, fetchFromGitHub
+, rustPlatform
+, coreutils
+, bash
+, installShellFiles
+, libiconv
+}:
 
 rustPlatform.buildRustPackage rec {
   pname = "just";
-  version = "1.0.1";
+  version = "1.1.0";
 
   src = fetchFromGitHub {
     owner = "casey";
     repo = pname;
     rev = version;
-    sha256 = "sha256-ssc6djhSk0xV4jdlTmehWX6UMBPAuebtYlzWRZ/32mM=";
+    sha256 = "sha256-hbBAbk0n80BbbIx81427bRz4x6enBsxJ0bHJKww44oc=";
   };
 
-  cargoSha256 = "sha256-ynYK37nCfIiy1CHBEQ/vMHOAPY/pp/lF/tSl9MJD7fY=";
+  cargoSha256 = "sha256-lZyFoOCWUE2ahU/lS+bIdrZXNm/sFEfLsQm1BxREg5w=";
 
   nativeBuildInputs = [ installShellFiles ];
   buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];