Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5e61b9b1f0c6
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 73dc83815347
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 17, 2019

  1. firmwareLinuxNonfree: 20190312 -> 20190416

    restore outputHash attributes, since I already have them...
    
    (cherry picked from commit e50c71b)
    dtzWill authored and fpletz committed Sep 17, 2019
    Copy the full SHA
    d456b70 View commit details
  2. firmwareLinuxNonfree: 2019-04-16 -> 2019-07-17

    (cherry picked from commit 0557007)
    
    Fixes #68770.
    eadwu authored and fpletz committed Sep 17, 2019
    Copy the full SHA
    73dc838 View commit details
Showing with 7 additions and 3 deletions.
  1. +7 −3 pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix
Original file line number Diff line number Diff line change
@@ -2,19 +2,23 @@

stdenv.mkDerivation rec {
name = "firmware-linux-nonfree-${version}";
version = "2019-03-12";
version = "2019-07-17";

src = fetchgit {
url = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git";
rev = "20190312";
sha256 = "1wk8l75rg7idvsyli29a1fii4xwz3vnm8d65fjw8d3azihdrhbyy";
rev = "20190717";
sha256 = "1dcaqdqyffxiadx420pg20157wqidz0c0ca5mrgyfxgrbh6a4mdj";
};

installFlags = [ "DESTDIR=$(out)" ];

# Firmware blobs do not need fixing and should not be modified
dontFixup = true;

outputHashMode = "recursive";
outputHashAlgo = "sha256";
outputHash = "1q3zqa3xxg4679p893xzwpa43afvdnnkg5xb0qs6mac75sizngid";

meta = with stdenv.lib; {
description = "Binary firmware collection packaged by kernel.org";
homepage = http://packages.debian.org/sid/firmware-linux-nonfree;