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>2020-06-24 16:16:01 +0800
committerxrelkd <46590321+xrelkd@users.noreply.github.com>2020-06-24 16:16:01 +0800
commit4ab300d6e2b741c331b43b5a444e3cab34f72255 (patch)
treee7425c33a122902f5fd055bdd8ee2199f0fab1fa /pkgs/development/tools/just
parent589710570131b7d82ccdc2a828a210e4cae7ccc1 (diff)
just: 0.5.11 -> 0.6.0
Diffstat (limited to 'pkgs/development/tools/just')
-rw-r--r--pkgs/development/tools/just/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/tools/just/default.nix b/pkgs/development/tools/just/default.nix
index 1f11cac7bde25..42ee4041f2053 100644
--- a/pkgs/development/tools/just/default.nix
+++ b/pkgs/development/tools/just/default.nix
@@ -1,18 +1,17 @@
-{ stdenv, fetchFromGitHub, rustPlatform, coreutils, bash
-, installShellFiles }:
+{ stdenv, fetchFromGitHub, rustPlatform, coreutils, bash, installShellFiles }:
 
 rustPlatform.buildRustPackage rec {
   pname = "just";
-  version = "0.5.11";
+  version = "0.6.0";
 
   src = fetchFromGitHub {
     owner = "casey";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0li5lspxfrim8gymqzzd5djjfbfi7jh1m234qlzy5vkx2q9qg0xv";
+    sha256 = "1sl235wr4fdsw0f0x7jynv6ljhvgis4d87xzpvjzajhdaappdp8d";
   };
 
-  cargoSha256 = "1sp8xrh3gmgmphh1bv050p1ybjybk9x8kswyxz2rd93q3zb5hpzz";
+  cargoSha256 = "0k3aqwvdm95403s279gkksklnikgyjpf5qvngsvsrm5xqda438jk";
 
   nativeBuildInputs = [ installShellFiles ];