summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/virtualization/OVMF
diff options
context:
space:
mode:
authorMarkus Partheymüller <markus.partheymueller@cyberus-technology.de>2020-04-20 13:30:35 +0200
committerMarkus Partheymüller <markus.partheymueller@cyberus-technology.de>2020-04-20 13:30:35 +0200
commit94d114dc2a9619843af8ea6b322ef2b4f44b982f (patch)
treec8a0a19569d4e98971da1a6f9a4b65b87900d907 /pkgs/applications/virtualization/OVMF
parentfe8afcb993845505042b41f09a9c98f6748d7af2 (diff)
edk2/OVMF: Determine build type from CC setting
Diffstat (limited to 'pkgs/applications/virtualization/OVMF')
-rw-r--r--pkgs/applications/virtualization/OVMF/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/applications/virtualization/OVMF/default.nix b/pkgs/applications/virtualization/OVMF/default.nix
index e203106587b7..cd30be889912 100644
--- a/pkgs/applications/virtualization/OVMF/default.nix
+++ b/pkgs/applications/virtualization/OVMF/default.nix
@@ -17,13 +17,9 @@ let
throw "Unsupported architecture";
version = lib.getVersion edk2;
- buildType = if stdenv.isDarwin then
- "CLANGPDB"
- else
- "GCC5";
in
-edk2.mkDerivation projectDscPath buildType {
+edk2.mkDerivation projectDscPath {
name = "OVMF-${version}";
outputs = [ "out" "fd" ];