Combine wines

Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
Magic_RB 2021-12-22 23:51:17 +01:00
parent 5ab9980b9d
commit 2ee80a84e5
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E

View file

@ -3,6 +3,13 @@ with lib;
let let
cfg = config.magic_rb.packageCollections.wine; cfg = config.magic_rb.packageCollections.wine;
inherit (config.magic_rb.pkgs) nixpkgs-unstable; inherit (config.magic_rb.pkgs) nixpkgs-unstable;
combineWines = wines:
map (wine: pkgs.writeShellScriptBin wine.name
''
${wine}/bin/wine "$@"
''
) wines;
in in
{ {
options.magic_rb.packageCollections.wine = { options.magic_rb.packageCollections.wine = {
@ -12,8 +19,8 @@ in
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = with pkgs; [ home.packages = with pkgs; [
winetricks winetricks
] ++ (with nixpkgs-unstable; [ ] ++ combineWines (with nixpkgs-unstable; [
wineWowPackages.staging wine-tkg wineWowPackages.staging
]); ]);
}; };
} }