about summary refs log tree commit diff
path: root/pkgs/applications/editors/helix
diff options
context:
space:
mode:
authorMichael Davis <mcarsondavis@gmail.com>2022-08-31 13:06:21 -0500
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-09-01 06:58:07 +1000
commit23028550cf3064f519bb302361c9500ebc837f92 (patch)
tree6fb7bf6746d9c9f7aa0d112eed0ed862104da220 /pkgs/applications/editors/helix
parent74ca03fa3a13003fcc15dc65e9915e2e67c3f959 (diff)
downloadnixlib-23028550cf3064f519bb302361c9500ebc837f92.tar
nixlib-23028550cf3064f519bb302361c9500ebc837f92.tar.gz
nixlib-23028550cf3064f519bb302361c9500ebc837f92.tar.bz2
nixlib-23028550cf3064f519bb302361c9500ebc837f92.tar.lz
nixlib-23028550cf3064f519bb302361c9500ebc837f92.tar.xz
nixlib-23028550cf3064f519bb302361c9500ebc837f92.tar.zst
nixlib-23028550cf3064f519bb302361c9500ebc837f92.zip
helix: 22.05 -> 22.08
Diffstat (limited to 'pkgs/applications/editors/helix')
-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 e33eaa787a2c..349ef8f7ba00 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.05";
+  version = "22.08";
 
   # 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-MVHfj9iVC8rFGFU+kpRcH0qX9kQ+scFsRgSw7suC5RU=";
+    sha256 = "sha256-PSTsPt+OQhYQ/m/hm5PgHWrQXtbooT+tG0767KyiJJw=";
     stripRoot = false;
   };
 
-  cargoSha256 = "sha256-9jkSZ2yW0Pca1ats7Mgv7HprpjoZWLpsbuwMjYOKlmk=";
+  cargoSha256 = "sha256-5Ap/PU8IjAPKKiFxzHqWQMspWkbTYIwTNiSMWIceUPc=";
 
   nativeBuildInputs = [ makeWrapper ];