Compare commits
2 commits
3236096a81
...
ac9891ee4e
Author | SHA1 | Date | |
---|---|---|---|
Lillian Violet | ac9891ee4e | ||
Lillian Violet | 1650e5a8a1 |
1171
flake.lock
1171
flake.lock
File diff suppressed because it is too large
Load diff
|
@ -88,7 +88,7 @@
|
||||||
"applications:steam.desktop"
|
"applications:steam.desktop"
|
||||||
"applications:noisetorch.desktop"
|
"applications:noisetorch.desktop"
|
||||||
"applications:org.kde.plasma-systemmonitor.desktop"
|
"applications:org.kde.plasma-systemmonitor.desktop"
|
||||||
"applications:org.codeberg.dnkl.foot.desktop"
|
"applications:foot.desktop"
|
||||||
"applications:nitrokey-app.desktop"
|
"applications:nitrokey-app.desktop"
|
||||||
"applications:codium.desktop"
|
"applications:codium.desktop"
|
||||||
"applications:freetube.desktop"
|
"applications:freetube.desktop"
|
||||||
|
|
45
home-manager/shared/shell/helix/helix.nix
Normal file
45
home-manager/shared/shell/helix/helix.nix
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
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 = "";
|
||||||
|
stripRoot = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "";
|
||||||
|
|
||||||
|
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];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue