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: ed8b959e17b9
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 730d7460212f
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 28, 2019

  1. Copy the full SHA
    730d746 View commit details
Showing with 9 additions and 9 deletions.
  1. +9 −9 pkgs/os-specific/linux/microcode/intel.nix
18 changes: 9 additions & 9 deletions pkgs/os-specific/linux/microcode/intel.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{ stdenv, fetchurl, libarchive, iucode-tool }:
{ stdenv, fetchFromGitHub, libarchive, iucode-tool }:

stdenv.mkDerivation rec {
name = "microcode-intel-${version}";
version = "20180807a";

src = fetchurl {
url = "https://downloadmirror.intel.com/28087/eng/microcode-${version}.tgz";
sha256 = "0dw1akgzdqk95pwmc8gfdmv7kabw9pn4c67f076bcbn4krliias6";
pname = "microcode-intel";
version = "20190312";

src = fetchFromGitHub {
owner = "intel";
repo = "Intel-Linux-Processor-Microcode-Data-Files";
rev = "microcode-${version}";
sha256 = "0n381dai2mv9indsbbr4nfbmp4y4qhshgflr095fyvq5a8acw94m";
};

nativeBuildInputs = [ iucode-tool libarchive ];

sourceRoot = ".";

installPhase = ''
runHook preInstall