Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d011e4749457
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 926c7638063e
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Apr 1, 2020

  1. ruby_2_5: 2.5.7 -> 2.5.8

    marsam authored and alyssais committed Apr 1, 2020
    Copy the full SHA
    6011c05 View commit details
  2. ruby_2_6: 2.6.5 -> 2.6.6

    marsam authored and alyssais committed Apr 1, 2020
    Copy the full SHA
    deb8fd1 View commit details
  3. linux: 5.4.28 -> 5.4.29

    NeQuissimus committed Apr 1, 2020
    Copy the full SHA
    926c763 View commit details
Showing with 10 additions and 10 deletions.
  1. +6 −6 pkgs/development/interpreters/ruby/default.nix
  2. +2 −2 pkgs/development/interpreters/ruby/patchsets.nix
  3. +2 −2 pkgs/os-specific/linux/kernel/linux-5.4.nix
12 changes: 6 additions & 6 deletions pkgs/development/interpreters/ruby/default.nix
Original file line number Diff line number Diff line change
@@ -220,18 +220,18 @@ in {
};

ruby_2_5 = generic {
version = rubyVersion "2" "5" "7" "";
version = rubyVersion "2" "5" "8" "";
sha256 = {
src = "1m6nmnj9shifp8g3yh7aimac01vl035bzcc19x2spdji6ig0sb8b";
git = "0wppf82c9ccdbnvj30mppr5a3mc7sxm05diahjdw7hhk29n43knp";
src = "16md4jspjwixjlbhx3pnd5iwpca07p23ghkxkqd82sbchw3xy2vc";
git = "19gkk3q9l33cwkfsp5k8f8fipq7gkyqkqirm9farbvy425519rv2";
};
};

ruby_2_6 = generic {
version = rubyVersion "2" "6" "5" "";
version = rubyVersion "2" "6" "6" "";
sha256 = {
src = "0zgdrgylq6avbblf78kpaf0k2xnkpc3jng3wkd7x67ycdrqnp5v6";
git = "0pay6ic22ag3bnvxffhgwp7z6clkd0p93944a1l4lvc5hxc8v77j";
src = "1492x795qzgp3zhpl580kd1sdp50n5hfsmpbfhdsq2rnxwyi8jrn";
git = "1jr9v99a7awssqmw7531afbx4a8i9x5yfqyffha545g7r4s7kj50";
};
};
}
4 changes: 2 additions & 2 deletions pkgs/development/interpreters/ruby/patchsets.nix
Original file line number Diff line number Diff line change
@@ -11,12 +11,12 @@
"${patchSet}/patches/ruby/2.4/head/railsexpress/02-improve-gc-stats.patch"
"${patchSet}/patches/ruby/2.4/head/railsexpress/03-display-more-detailed-stack-trace.patch"
];
"2.5.7" = ops useRailsExpress [
"2.5.8" = ops useRailsExpress [
"${patchSet}/patches/ruby/2.5/head/railsexpress/01-fix-broken-tests-caused-by-ad.patch"
"${patchSet}/patches/ruby/2.5/head/railsexpress/02-improve-gc-stats.patch"
"${patchSet}/patches/ruby/2.5/head/railsexpress/03-more-detailed-stacktrace.patch"
];
"2.6.5" = ops useRailsExpress [
"2.6.6" = ops useRailsExpress [
"${patchSet}/patches/ruby/2.6/head/railsexpress/01-fix-broken-tests-caused-by-ad.patch"
"${patchSet}/patches/ruby/2.6/head/railsexpress/02-improve-gc-stats.patch"
"${patchSet}/patches/ruby/2.6/head/railsexpress/03-more-detailed-stacktrace.patch"
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/kernel/linux-5.4.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
with stdenv.lib;

buildLinux (args // rec {
version = "5.4.28";
version = "5.4.29";

# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {

src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
sha256 = "197p7rjmbs229ncj1y8s80f7n4bm8g9w0jrv1109m3rl8q9wqqy8";
sha256 = "1jssjnhwjh1my42vskm9h2b7rpc0ncvf2428y2aqm558ihia9ln7";
};
} // (args.argsOverride or {}))