wine*: add meta.mainProgram

Fix running wine builds from `wineWowPackages` via `nix run`,
this change makes it execute `bin/wine` instead of the non-existent
`bin/wine-wow`.
This commit is contained in:
Samuel Gräfenstein 2021-04-29 16:34:54 +02:00
parent c7aa3db361
commit 1e77642558
No known key found for this signature in database
GPG key ID: EF76A063F15C63C8

View file

@ -151,5 +151,6 @@ stdenv.mkDerivation ((lib.optionalAttrs (buildScript != null) {
license = with lib.licenses; [ lgpl21Plus ];
description = "An Open Source implementation of the Windows API on top of X, OpenGL, and Unix";
maintainers = with lib.maintainers; [ avnik raskin bendlas ];
mainProgram = "wine";
};
})