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

Commits on Mar 25, 2020

  1. Copy the full SHA
    0cf2b46 View commit details
  2. Copy the full SHA
    15789d2 View commit details

Commits on May 12, 2020

  1. Merge pull request #83326 from helsinki-systems/upd/uefitool

    uefitool: update
    Lassulus authored May 12, 2020
    Copy the full SHA
    1a74d41 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/system/uefitool/variants.nix
8 changes: 4 additions & 4 deletions pkgs/tools/system/uefitool/variants.nix
Original file line number Diff line number Diff line change
@@ -3,13 +3,13 @@ let
common = opts: libsForQt5.callPackage (import ./common.nix opts) {};
in rec {
new-engine = common rec {
version = "A56";
sha256 = "0sxmjkrwcchxg2qmcjsw2vr42s7cdcg2fxkwb8axq2r2z23465gp";
version = "A57";
sha256 = "0algfdlxfjs582hsqmagbcmw06p8qlh0k5xczfkscs3prdn2vm7n";
installFiles = [ "UEFITool/UEFITool" "UEFIFind/UEFIFind" "UEFIExtract/UEFIExtract" ];
};
old-engine = common rec {
version = "0.27.0";
sha256 = "1i1p823qld927p4f1wcphqcnivb9mq7fi5xmzibxc3g9zzgnyc2h";
version = "0.28.0";
sha256 = "1n2hd2dysi5bv2iyq40phh1jxc48gdwzs414vfbxvcharcwapnja";
installFiles = [ "UEFITool" "UEFIReplace/UEFIReplace" "UEFIPatch/UEFIPatch" ];
};
}