9 lines
228 B
Nix
9 lines
228 B
Nix
{ pkgs, ... }: {
|
|
system.replaceRuntimeDependencies = [({
|
|
original = pkgs.glibc;
|
|
replacement = pkgs.glibc.overrideAttrs (oldAttrs: {
|
|
patches = oldAttrs.patches ++ [ ./remove-iso2022cnext.patch ];
|
|
});
|
|
})];
|
|
}
|