Skip to content

Commit

Permalink
Temporarily use latest helix version
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw committed Oct 26, 2023
1 parent f434548 commit 446744d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,22 @@
ansi = final.callPackage ./derivations/ansi { };
wally = final.callPackage ./derivations/wally { };
cert-info = cert-info.packages.${system}.default;
# get latest version of helix released 2023/10/25 remove this when
# helix 23.10 or newer is the current version
helix = prev.helix.overrideAttrs (prevAttrs: rec {
version = "23.10";
src = final.fetchzip {
url = "https://github.com/helix-editor/helix/releases/download/${version}/helix-${version}-source.tar.xz";
hash = "sha256-PH4n+zm5ShwOrzzQm0Sn8b8JzAW/CF8UzzKZYE3e2WA=";
stripRoot = false;
};
cargoDeps = prevAttrs.cargoDeps.overrideAttrs (_: {
name = "${prevAttrs.pname}-${version}-vendor.tar.gz";
inherit src;
outputHash = "sha256-B8RO6BADDbPchowSfNVgviGvVgH23iF42DdhEBKBQzs=";
});
patches = [];
});
gh-repo-url = final.callPackage ./derivations/gh-repo-url { };
# add flags to firefox devedition to use my old profile
firefox-devedition = (
Expand Down

0 comments on commit 446744d

Please sign in to comment.