File tree 2 files changed +18
-0
lines changed
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
let
4
4
overlays = {
5
+ wine = import ./wine.nix ;
5
6
#ghcjs = import ./ghcjs-asterius-triple.nix;
6
7
#python = import ./python.nix;
7
8
haskell = import ./haskell.nix args ;
38
39
haskellPackages = { } ;
39
40
haskell-nix-prev = prev ;
40
41
} )
42
+ wine
41
43
haskell
42
44
hackage-quirks
43
45
bootstrap
Original file line number Diff line number Diff line change
1
+ # fix wine at 3.0.2; the 4.x branch breaks windows cross compilation.
2
+ # this will inevitably replace *any* wine version. Thus this might not
3
+ # really be what we ultimately want.
4
+ final : prev :
5
+ {
6
+ winePackages = prev . winePackages // {
7
+ minimal = prev . winePackages . minimal . overrideAttrs ( oldAttrs : {
8
+ name = "wine-3.21" ;
9
+ version = "3.21" ;
10
+ src = prev . fetchurl {
11
+ url = "https://dl.winehq.org/wine/source/3.x/wine-3.21.tar.xz" ;
12
+ sha256 = "1h70wb7kysbzv36i3fblyiihvalwhy6sj4s2a8nf21nz2mhc0k58" ; } ;
13
+ patches = [ ] ;
14
+ } ) ;
15
+ } ;
16
+ }
You can’t perform that action at this time.
0 commit comments