mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
49 lines
1.4 KiB
Nix
49 lines
1.4 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, helix
|
|
, installShellFiles
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "evil-helix";
|
|
version = "20240716";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "usagi-flow";
|
|
repo = "evil-helix";
|
|
rev = "release-${version}";
|
|
hash = "sha256-nvLo8bWjiLJjM+pZArMKu4gjEFPrlqDI/Kf+W8fs9L8=";
|
|
};
|
|
|
|
cargoHash = "sha256-2qrfw/QVfZZ3GTBalNne4QYQsI+JZBf5FdLJD84gnS4=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
env = {
|
|
# disable fetching and building of tree-sitter grammars in the helix-term build.rs
|
|
HELIX_DISABLE_AUTO_GRAMMAR_BUILD = "1";
|
|
HELIX_DEFAULT_RUNTIME = "${placeholder "out"}/lib/runtime";
|
|
};
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/lib
|
|
cp -r runtime $out/lib
|
|
# copy tree-sitter grammars from helix package
|
|
# TODO: build it from source instead
|
|
cp -r ${helix}/lib/runtime/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
|
|
'';
|
|
|
|
meta = {
|
|
description = "Post-modern modal text editor, with vim keybindings";
|
|
homepage = "https://github.com/usagi-flow/evil-helix";
|
|
license = lib.licenses.mpl20;
|
|
mainProgram = "hx";
|
|
maintainers = with lib.maintainers; [ thiagokokada ];
|
|
};
|
|
}
|