summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Davis <mcarsondavis@gmail.com>2022-12-06 21:49:33 -0600
committerMichael Davis <mcarsondavis@gmail.com>2022-12-06 22:03:44 -0600
commitb94fc93c9dd64bb826f72bc8af1d7fad018e8b24 (patch)
tree49ae66bee156fd4f52a8c89e71272b6155882941
parentb67c445e842f3c06d11c4ec1ae7428fbdb3c450c (diff)
downloadnixpkgs-b94fc93c9dd64bb826f72bc8af1d7fad018e8b24.tar
nixpkgs-b94fc93c9dd64bb826f72bc8af1d7fad018e8b24.tar.gz
nixpkgs-b94fc93c9dd64bb826f72bc8af1d7fad018e8b24.tar.bz2
nixpkgs-b94fc93c9dd64bb826f72bc8af1d7fad018e8b24.tar.lz
nixpkgs-b94fc93c9dd64bb826f72bc8af1d7fad018e8b24.tar.xz
nixpkgs-b94fc93c9dd64bb826f72bc8af1d7fad018e8b24.tar.zst
nixpkgs-b94fc93c9dd64bb826f72bc8af1d7fad018e8b24.zip
helix: 22.08.1 -> 22.12
-rw-r--r--pkgs/applications/editors/helix/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/helix/default.nix b/pkgs/applications/editors/helix/default.nix
index d3d0c7c2f93..55135c255bf 100644
--- a/pkgs/applications/editors/helix/default.nix
+++ b/pkgs/applications/editors/helix/default.nix
@@ -2,17 +2,17 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "helix";
-  version = "22.08.1";
+  version = "22.12";
 
   # This release tarball includes source code for the tree-sitter grammars,
   # which is not ordinarily part of the repository.
   src = fetchzip {
     url = "https://github.com/helix-editor/helix/releases/download/${version}/helix-${version}-source.tar.xz";
-    sha256 = "sha256-pqAhUxKeFN7eebVdNN3Ge38sA30SUSu4Xn4HDZAjjyY=";
+    sha256 = "sha256-En6SOyAPNPPzDGdm2XTjbGG0NQFGBVzjjoyCbdnHFao=";
     stripRoot = false;
   };
 
-  cargoSha256 = "sha256-idItRkymr+cxk3zv2mPBR/frCGvzEUdSAhY7gghfR3M=";
+  cargoSha256 = "sha256-oSS0LkLg2JSRLYoF0+FVQzFUJtFuVKtU2MWYenmFC0s=";
 
   nativeBuildInputs = [ installShellFiles makeWrapper ];