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

@ -13,12 +13,20 @@
packages = eachSystem (
system: {
inherit (import ./packages pkgsFor.${system}) fish helix kakoune;
inherit
(import ./packages {
pkgs = pkgsFor.${system};
helix = inputs.helix.packages.${pkgs.system}.default;
})
fish
wrapped-helix
kakoune
;
}
);
apps = eachSystem (system: let
inherit (inputs.self.packages.${system}) fish helix;
inherit (inputs.self.packages.${system}) fish wrapped-helix;
in {
default = {
type = "app";
@ -26,7 +34,7 @@
};
helix = {
type = "app";
program = "${helix}/bin/hx";
program = "${wrapped-helix}/bin/hx";
};
});
};
@ -51,5 +59,7 @@
inputs.nixpkgs.follows = "nixpkgs";
inputs.systems.follows = "systems";
};
helix.url = "github:helix-editor/helix";
};
}