0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-19 16:40:32 +03:00
nixpkgs/pkgs/development/interpreters/ruby/patchsets.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
623 B
Nix
Raw Normal View History

{ patchSet, useRailsExpress, ops, patchLevel, fetchpatch }:
2019-08-13 21:52:01 +00:00
{
"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"
];
2021-11-25 10:11:28 +01:00
"3.0.3" = 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"
];
2022-03-01 11:57:50 +01:00
"3.1.1" = ops useRailsExpress [ # no patches yet (2021-12-25)
];
2015-11-27 16:12:27 +00:00
}