2023-01-23 20:56:18 -03:00
|
|
|
inputs: (final: prev: {
|
2022-12-13 12:50:11 -03:00
|
|
|
alacritty = (prev.unstable.alacritty.overrideAttrs (old-alacritty: rec {
|
|
|
|
src = inputs.alacritty-sixel;
|
|
|
|
cargoDeps = old-alacritty.cargoDeps.overrideAttrs (prev.lib.const {
|
|
|
|
inherit src;
|
2023-03-06 23:26:29 -03:00
|
|
|
outputHash = "sha256-KKJAYhOscjZAJhy0ZEVZ8LwRh+zViRbNeiSL0HwdYh0=";
|
2022-12-13 12:50:11 -03:00
|
|
|
});
|
|
|
|
}));
|
|
|
|
ranger = (prev.ranger.overridePythonAttrs (old-ranger: rec {
|
|
|
|
src = inputs.ranger-sixel;
|
|
|
|
checkInputs = [ ];
|
|
|
|
propagatedBuildInputs = with prev.python3Packages;
|
|
|
|
old-ranger.propagatedBuildInputs ++ [ astroid pylint pytest ];
|
|
|
|
}));
|
|
|
|
})
|
|
|
|
|