Merge pull request #220278 from bdd/fix-binfmt-x86_64-windows-extension

nixos/binfmt: fix extension for Windows binaries
This commit is contained in:
Sandro 2023-03-15 16:15:47 +01:00 committed by GitHub
commit c817b58614
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -134,11 +134,11 @@ let
mask = ''\xff\xff\xff\xff''; mask = ''\xff\xff\xff\xff'';
}; };
x86_64-windows = { x86_64-windows = {
magicOrExtension = ".exe"; magicOrExtension = "exe";
recognitionType = "extension"; recognitionType = "extension";
}; };
i686-windows = { i686-windows = {
magicOrExtension = ".exe"; magicOrExtension = "exe";
recognitionType = "extension"; recognitionType = "extension";
}; };
}; };