1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-05-10 00:26:04 +02:00

flake: pass helix' wrapper through (#5994)

This allows easily (re)making helix (wrapped)
from an overriden helix-unwrapped derivation,
e.g. if one wanted to patch helix from nix.
This commit is contained in:
Austreelis 2023-02-17 07:17:38 +01:00 committed by GitHub
parent ce0837dbb7
commit f7edc34e7b
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,7 +104,7 @@
};
};
pkgConfig = common: {
helix-term = {
helix-term = let
# Wrap helix with runtime
wrapper = _: old: let
inherit (common) pkgs;
@ -130,9 +130,14 @@
'';
in
helix-wrapped
// {override = makeOverridableHelix old;};
// {
override = makeOverridableHelix old;
passthru = helix-wrapped.passthru // {wrapper = wrapper {};};
};
in
makeOverridableHelix old {};
in {
inherit wrapper;
overrides.fix-build.overrideAttrs = prev: {
src = filteredSource;