helix: bump version

This commit is contained in:
Bloxx12 2025-07-11 22:43:33 +02:00
commit e84221e414
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

@ -44,21 +44,20 @@
custom-helix = custom-helix =
(helix.override {inherit rustPlatform;}).overrideAttrs (helix.override {inherit rustPlatform;}).overrideAttrs
(finalAttrs: previousAttrs: { (finalAttrs: previousAttrs: {
version = "25.06.1"; version = "25.07.1";
src = fetchzip { src = fetchzip {
url = "https://github.com/bloxx12/helix/releases/download/${finalAttrs.version}/helix-${finalAttrs.version}-source.tar.xz"; url = "https://github.com/bloxx12/helix/releases/download/${finalAttrs.version}/helix-${finalAttrs.version}-source.tar.xz";
hash = "sha256-941moaBUF+aGsbFapK1cp5+NFdecSfRCTdnVUtkDQps="; hash = "sha256-OLCJPleRHhQbHOm8EnMWDBV5qG4PKGCUhr4y8mSkvpg=";
stripRoot = false; stripRoot = false;
}; };
cargoBuildFeatures = ["unicode-lines"]; RUSTFLAGS = "-Ctarget-cpu=native";
RUSTFLAGS = "-Ctarget-cpu=native -Clto=fat";
doInstallCheck = false; doInstallCheck = false;
cargoDeps = rustPlatform.fetchCargoVendor { cargoDeps = rustPlatform.fetchCargoVendor {
inherit (custom-helix) src; inherit (custom-helix) src;
hash = "sha256-w07ZV1tR3lzYz4N+hI9alvFp0AHCcsItPRhVt9Sluo8="; hash = "sha256-eVZVPyIk+kBq5hh+bzTveng6mb+6XAnCp0OAI1c+ObI=";
}; };
}); });