about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-12-18 22:51:00 -0500
committerGitHub <noreply@github.com>2021-12-18 22:51:00 -0500
commite3ccfc27e0212568e1ddfc8b6b62d69bc25bee07 (patch)
tree37213818f6d525e5caa0f35a0871bc77bc9971dc /pkgs
parent344b6be5b499c49b78732645d7ddcdc76274b620 (diff)
parent927b9f1728d57e7d7b141c871f5717307e703c47 (diff)
Merge pull request #151239 from qowoz/just
just: 0.10.3 -> 0.10.5
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/just/default.nix12
1 files changed, 3 insertions, 9 deletions
diff --git a/pkgs/development/tools/just/default.nix b/pkgs/development/tools/just/default.nix
index 2d78ec338ac3a..79c726c27964c 100644
--- a/pkgs/development/tools/just/default.nix
+++ b/pkgs/development/tools/just/default.nix
@@ -2,25 +2,19 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "just";
-  version = "0.10.3";
+  version = "0.10.5";
 
   src = fetchFromGitHub {
     owner = "casey";
     repo = pname;
     rev = version;
-    sha256 = "sha256-r6kP1LbT8ZQoxSuy7jpnHD2/RgcPvmTNfjKzj5ceXRc=";
+    sha256 = "sha256-PbWV8It/ubDbZooJdt/KWihnp221Pexs0U6zMa8KSMw=";
   };
-  cargoSha256 = "sha256-y6RcFH2qDoM3wWnZ6ewC9QyRD3mFsoakToRmon4bAnE=";
+  cargoSha256 = "sha256-VRfk6566SNmvCxtD9EdDxDdBvQuEfjPVggXzt4VoYRg=";
 
   nativeBuildInputs = [ installShellFiles ];
   buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
 
-  postPatch = ''
-    # this hard codes the compiler, which breaks the aarch64 in particular
-    # we rather want to set the compiler ourself
-    rm .cargo/config
-  '';
-
   postInstall = ''
     installManPage man/just.1