mirror of
https://github.com/RGBCube/ncc
synced 2025-07-28 10:37:44 +00:00
Add Cab support to Helix
This commit is contained in:
parent
d093a835e0
commit
ce1d611a62
1 changed files with 21 additions and 0 deletions
|
@ -6,6 +6,27 @@ in {
|
|||
shellAliases.x = "hx";
|
||||
};
|
||||
|
||||
nixpkgs.overlays = [(self: super: {
|
||||
helix = super.helix.overrideAttrs (old: {
|
||||
version = "25.01.1";
|
||||
|
||||
src = self.fetchzip {
|
||||
url = "https://github.com/cull-os/helix/releases/download/ci-release-25.01.1/helix-ci-release-25.01.1-source.tar.xz";
|
||||
hash = "sha256-bvlzXRAdPvz8P49KENSw9gupQNaUm/+3eZZ1q7+fTsw=";
|
||||
stripRoot = false;
|
||||
};
|
||||
|
||||
# TODO: Delete this as this was fixed on latest unstable.
|
||||
preVersionCheck = "";
|
||||
|
||||
cargoDeps = super.helix.cargoDeps.overrideAttrs (_: {
|
||||
inherit (self.helix) src;
|
||||
outputHash = "sha256-O5ECrKyF9x5r7w9wMIqbYYuGFIeUaRgtzDfYK9dFjp4=";
|
||||
});
|
||||
});
|
||||
})];
|
||||
|
||||
|
||||
home-manager.sharedModules = [{
|
||||
programs.nushell.configFile.text = mkIf (config.isDesktop && config.isLinux) <| mkAfter ''
|
||||
def --wrapped hx [...arguments] {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue