wineStaging: allow to blacklist patchsets from staging
Due repeatable issues with xactengine-initial patchset. Later, `disablePatchsets` can be extended to be overridable argument of wineStaging.
This commit is contained in:
parent
e79e7e17e9
commit
ec7b6af024
@ -52,6 +52,9 @@ in rec {
|
|||||||
owner = "wine-staging";
|
owner = "wine-staging";
|
||||||
repo = "wine-staging";
|
repo = "wine-staging";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
|
|
||||||
|
# Just keep list empty, if current release haven't broken patchsets
|
||||||
|
disabledPatchsets = [ "xactengine-initial" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
winetricks = fetchFromGitHub rec {
|
winetricks = fetchFromGitHub rec {
|
||||||
|
@ -18,7 +18,7 @@ in assert stdenv.lib.getVersion wineUnstable == patch.version;
|
|||||||
chmod +w patches
|
chmod +w patches
|
||||||
cd patches
|
cd patches
|
||||||
patchShebangs gitapply.sh
|
patchShebangs gitapply.sh
|
||||||
./patchinstall.sh DESTDIR="$PWD/.." --all
|
./patchinstall.sh DESTDIR="$PWD/.." --all ${stdenv.lib.concatMapStringsSep " " (ps: "-W ${ps}") patch.disabledPatchsets}
|
||||||
cd ..
|
cd ..
|
||||||
'';
|
'';
|
||||||
})) // {
|
})) // {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user