helix: use upstream version

This commit is contained in:
Bloxx12 2025-04-09 15:31:18 +02:00
commit af0fd0f55e
6 changed files with 129 additions and 27 deletions

View file

@ -1,7 +1,10 @@
pkgs: let
helix = pkgs.callPackage ./helix.nix {};
{
pkgs,
helix,
}: let
wrapped-helix = pkgs.callPackage ./helix.nix {inherit helix;};
kakoune = pkgs.callPackage ./kakoune.nix {};
fish = pkgs.callPackage ./shell {};
in {
inherit helix kakoune fish;
inherit wrapped-helix kakoune fish;
}