mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
15 lines
524 B
Nix
15 lines
524 B
Nix
{ libsForQt5 }:
|
|
let
|
|
common = opts: libsForQt5.callPackage (import ./common.nix opts) {};
|
|
in rec {
|
|
new-engine = common rec {
|
|
version = "A58";
|
|
sha256 = "131hkyr07fg7rnr938yyj0gk528x3402dhisav221c27v84zb7pn";
|
|
installFiles = [ "UEFITool/UEFITool" "UEFIFind/UEFIFind" "UEFIExtract/UEFIExtract" ];
|
|
};
|
|
old-engine = common rec {
|
|
version = "0.28.0";
|
|
sha256 = "1n2hd2dysi5bv2iyq40phh1jxc48gdwzs414vfbxvcharcwapnja";
|
|
installFiles = [ "UEFITool" "UEFIReplace/UEFIReplace" "UEFIPatch/UEFIPatch" ];
|
|
};
|
|
}
|