mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{ fetchzip, lib, rustPlatform, git, installShellFiles, makeWrapper }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "helix";
|
|
version = "23.05";
|
|
|
|
# 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";
|
|
hash = "sha256-3ZEToXwW569P7IFLqz6Un8rClnWrW5RiYKmRVFt7My8=";
|
|
stripRoot = false;
|
|
};
|
|
|
|
cargoHash = "sha256-/LCtfyDAA2JuioBD/CDMv6OOxM0B9A3PpuVP/YY5oF0=";
|
|
|
|
nativeBuildInputs = [ git installShellFiles makeWrapper ];
|
|
|
|
postInstall = ''
|
|
# not needed at runtime
|
|
rm -r runtime/grammars/sources
|
|
|
|
mkdir -p $out/lib
|
|
cp -r runtime $out/lib
|
|
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
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|