forked from mirrors/nixpkgs
5bd5ab2410
https://www.ruby-lang.org/en/news/2022/04/12/ruby-3-1-2-released/ Fixes: CVE-2022-28738, CVE-2022-28739
16 lines
623 B
Nix
16 lines
623 B
Nix
{ patchSet, useRailsExpress, ops, patchLevel, fetchpatch }:
|
|
|
|
{
|
|
"2.7.6" = ops useRailsExpress [
|
|
"${patchSet}/patches/ruby/2.7/head/railsexpress/01-fix-broken-tests-caused-by-ad.patch"
|
|
"${patchSet}/patches/ruby/2.7/head/railsexpress/02-improve-gc-stats.patch"
|
|
"${patchSet}/patches/ruby/2.7/head/railsexpress/03-more-detailed-stacktrace.patch"
|
|
];
|
|
"3.0.4" = ops useRailsExpress [
|
|
"${patchSet}/patches/ruby/3.0/head/railsexpress/01-improve-gc-stats.patch"
|
|
"${patchSet}/patches/ruby/3.0/head/railsexpress/02-malloc-trim.patch"
|
|
];
|
|
"3.1.2" = ops useRailsExpress [ # no patches yet (2021-12-25)
|
|
];
|
|
}
|