94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
52 lines
1.6 KiB
Nix
52 lines
1.6 KiB
Nix
{ fetchFromGitHub, lib, rustPlatform, installShellFiles, makeWrapper, callPackage }:
|
|
|
|
let
|
|
version = "23.05";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "helix-editor";
|
|
repo = "helix";
|
|
rev = "${version}";
|
|
hash = "sha256-Ws9uWtZLvTwL5HNonFr4YwyPoTU8QlCvhs6IJ92aLDw=";
|
|
};
|
|
|
|
grammars = callPackage ./grammars.nix { };
|
|
in rustPlatform.buildRustPackage {
|
|
inherit src version;
|
|
|
|
pname = "helix";
|
|
# This release tarball includes source code for the tree-sitter grammars,
|
|
# which is not ordinarily part of the repository.
|
|
cargoSha256 = "sha256-/LCtfyDAA2JuioBD/CDMv6OOxM0B9A3PpuVP/YY5oF0=";
|
|
|
|
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
|
|
|
postInstall = ''
|
|
# We self build the grammar files
|
|
rm -r runtime/grammars
|
|
|
|
mkdir -p $out/lib
|
|
cp -r runtime $out/lib
|
|
ln -s ${grammars} $out/lib/runtime/grammars
|
|
installShellCompletion contrib/completion/hx.{bash,fish,zsh}
|
|
mkdir -p $out/share/{applications,icons/hicolor/256x256/apps}
|
|
cp contrib/Helix.desktop $out/share/applications
|
|
cp contrib/helix.png $out/share/icons/hicolor/256x256/apps
|
|
'';
|
|
postFixup = ''
|
|
wrapProgram $out/bin/hx --set HELIX_RUNTIME $out/lib/runtime
|
|
'';
|
|
|
|
# disable fetching and building of tree-sitter grammars in favor of the custom build process in ./grammars.nix
|
|
env.HELIX_DISABLE_AUTO_GRAMMAR_BUILD = "1";
|
|
|
|
passthru.updateScript = ./update.py;
|
|
|
|
meta = with lib; {
|
|
description = "A post-modern modal text editor";
|
|
homepage = "https://helix-editor.com";
|
|
license = licenses.mpl20;
|
|
mainProgram = "hx";
|
|
maintainers = with maintainers; [ danth yusdacra zowoq ];
|
|
};
|
|
}
|