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: 92558b8181b4
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: ff54d08dc844
Choose a head ref
  • 5 commits
  • 4 files changed
  • 4 contributors

Commits on Jan 27, 2020

  1. keepalived: 2.0.19 -> 2.0.20

    r-ryantm committed Jan 27, 2020
    Copy the full SHA
    3316b8f View commit details

Commits on Jan 28, 2020

  1. cargo-about: 0.1.1 -> 0.2.0

    evanjs committed Jan 28, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    9a9bb4f View commit details

Commits on Jan 29, 2020

  1. Merge pull request #78588 from r-ryantm/auto-update/keepalived

    keepalived: 2.0.19 -> 2.0.20
    marsam authored Jan 29, 2020
    Copy the full SHA
    9773e23 View commit details
  2. Merge pull request #78718 from evanjs/cargo-about-0.2.0

    cargo-about: 0.1.1 -> 0.2.0
    marsam authored Jan 29, 2020
    Copy the full SHA
    8336d65 View commit details
  3. linux_5_5: init at 5.5

    fpletz committed Jan 29, 2020
    Copy the full SHA
    ff54d08 View commit details
18 changes: 18 additions & 0 deletions pkgs/os-specific/linux/kernel/linux-5.5.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{ stdenv, buildPackages, fetchurl, perl, buildLinux, modDirVersionArg ? null, ... } @ args:

with stdenv.lib;

buildLinux (args // rec {
version = "5.5";

# 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;

# branchVersion needs to be x.y
extraMeta.branch = versions.majorMinor version;

src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
sha256 = "0c131fi6s7vgvka1c0597vnvcmwn1pp968rci5kq64iwj3pd9yx6";
};
} // (args.argsOverride or {}))
4 changes: 2 additions & 2 deletions pkgs/tools/networking/keepalived/default.nix
Original file line number Diff line number Diff line change
@@ -4,13 +4,13 @@

stdenv.mkDerivation rec {
pname = "keepalived";
version = "2.0.19";
version = "2.0.20";

src = fetchFromGitHub {
owner = "acassen";
repo = "keepalived";
rev = "v${version}";
sha256 = "05jgr0f04z69x3zf3b9z04wczl15fnh69bs6j0yw55fij1k9nj4d";
sha256 = "0ijzw56hbac24dhrgjd0hjgf45072imyzq3mcgsirdl3xqjc6x12";
};

buildInputs = [
6 changes: 3 additions & 3 deletions pkgs/tools/package-management/cargo-about/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "cargo-about";
version = "0.1.1";
version = "0.2.0";

src = fetchFromGitHub {
owner = "EmbarkStudios";
repo = "cargo-about";
rev = "${version}";
sha256 = "1n9274np1ibz1s35q1qqajnwj7w4l695js9xdbga5wim18ly622m";
sha256 = "0bsay1vqi5b3z7qjwbkwx3ikmpjzc0kswbajm50xmcwlg8jrn420";
};

cargoSha256 = "0zjvvqw68y6zmjzmd22hh246422x2kxljj73vxywkl18crkakd7k";
cargoSha256 = "1mqicibpa9sxac8v2kk8vfvxcis2wkdkklia2pbspc0pz3h0c8if";

meta = with lib; {
description = "Cargo plugin to generate list of all licenses for a crate";
11 changes: 10 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -16461,6 +16461,14 @@ in
];
};

linux_5_5 = callPackage ../os-specific/linux/kernel/linux-5.5.nix {
kernelPatches = [
kernelPatches.bridge_stp_helper
kernelPatches.request_key_helper
kernelPatches.export_kernel_fpu_functions."5.3"
];
};

linux_testing = callPackage ../os-specific/linux/kernel/linux-testing.nix {
kernelPatches = [
kernelPatches.bridge_stp_helper
@@ -16666,7 +16674,7 @@ in
linux = linuxPackages.kernel;

# Update this when adding the newest kernel major version!
linuxPackages_latest = linuxPackages_5_4;
linuxPackages_latest = linuxPackages_5_5;
linux_latest = linuxPackages_latest.kernel;

# Build the kernel modules for the some of the kernels.
@@ -16680,6 +16688,7 @@ in
linuxPackages_4_14 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_14);
linuxPackages_4_19 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_4_19);
linuxPackages_5_4 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_5_4);
linuxPackages_5_5 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_5_5);

# When adding to this list:
# - Update linuxPackages_latest to the latest version