mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{ fetchzip, lib, rustPlatform, git, installShellFiles }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "helix";
|
|
version = "24.07";
|
|
|
|
# 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-R8foMx7YJ01ZS75275xPQ52Ns2EB3OPop10F4nicmoA=";
|
|
stripRoot = false;
|
|
};
|
|
|
|
cargoHash = "sha256-Y8zqdS8vl2koXmgFY0hZWWP1ZAO8JgwkoPTYPVpkWsA=";
|
|
|
|
nativeBuildInputs = [ git installShellFiles ];
|
|
|
|
env.HELIX_DEFAULT_RUNTIME = "${placeholder "out"}/lib/runtime";
|
|
|
|
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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Post-modern modal text editor";
|
|
homepage = "https://helix-editor.com";
|
|
license = licenses.mpl20;
|
|
mainProgram = "hx";
|
|
maintainers = with maintainers; [ danth yusdacra zowoq ];
|
|
};
|
|
}
|