wine{,64,Wow}Packages: add {stable,unstable,staging}Full

This commit is contained in:
Zane van Iperen 2021-11-06 17:03:36 +10:00
parent 0d5b4445e3
commit 9672ef7e0a
No known key found for this signature in database
GPG key ID: 68616B2D8AC4DCC5
2 changed files with 6 additions and 1 deletions

View file

@ -33028,7 +33028,7 @@ with pkgs;
inherit wineBuild;
inherit (callPackage ./wine-packages.nix {})
minimal base full stable unstable staging fonts;
minimal base full stable stableFull unstable unstableFull staging stagingFull fonts;
});
winePackages = recurseIntoAttrs (winePackagesFor (config.wine.build or "wine32"));

View file

@ -51,6 +51,11 @@ rec {
};
stable = base.override { wineRelease = "stable"; };
stableFull = full.override { wineRelease = "stable"; };
unstable = base.override { wineRelease = "unstable"; };
unstableFull = full.override { wineRelease = "unstable"; };
staging = base.override { wineRelease = "staging"; };
stagingFull = full.override { wineRelease = "staging"; };
}