This repository has been archived on 2024-05-20. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-workaround-cve-2024-2961/workaround-cve-2024-2961.nix

9 lines
228 B
Nix
Raw Normal View History

2024-04-23 14:26:48 +02:00
{ pkgs, ... }: {
system.replaceRuntimeDependencies = [({
original = pkgs.glibc;
replacement = pkgs.glibc.overrideAttrs (oldAttrs: {
patches = oldAttrs.patches ++ [ ./remove-iso2022cnext.patch ];
});
})];
}