File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7979 { lib , pkgs , ... } :
8080 {
8181 imports = [ checkOverrideNixVersion ] ;
82- nix . package = lib . mkForce pkgs . nixVersions . nix_2_3 ;
82+ nix . package = lib . mkForce (
83+ pkgs . nixVersions . nix_2_3 . overrideAttrs ( o : {
84+ meta = o . meta // {
85+ # This version shouldn't be used by end-users, but we run tests against
86+ # it to ensure we don't break protocol compatibility.
87+ knownVulnerabilities = [ ] ;
88+ } ;
89+ } )
90+ ) ;
8391 } ;
8492
8593 otherNixes . nix_2_13 . setNixPackage =
9098 nixpkgs-23-11 . legacyPackages . ${ pkgs . stdenv . hostPlatform . system } . nixVersions . nix_2_13 . overrideAttrs
9199 ( o : {
92100 meta = o . meta // {
101+ # This version shouldn't be used by end-users, but we run tests against
102+ # it to ensure we don't break protocol compatibility.
93103 knownVulnerabilities = [ ] ;
94104 } ;
95105 } )
You can’t perform that action at this time.
0 commit comments