mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
Merge #51378: linuxPackages.nvidia_x11_legacy304: broken on 4.18+
This commit is contained in:
commit
70f507ae56
@ -75,5 +75,6 @@ rec {
|
|||||||
'';
|
'';
|
||||||
in applyPatches [ "fix-typos" ];
|
in applyPatches [ "fix-typos" ];
|
||||||
patches = maybePatch_drm_legacy;
|
patches = maybePatch_drm_legacy;
|
||||||
|
broken = stdenv.lib.versionAtLeast kernel.version "4.18";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
|
|
||||||
, prePatch ? ""
|
, prePatch ? ""
|
||||||
, patches ? []
|
, patches ? []
|
||||||
|
, broken ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
{ stdenv, callPackage, pkgsi686Linux, fetchurl
|
{ stdenv, callPackage, pkgsi686Linux, fetchurl
|
||||||
@ -91,6 +92,7 @@ let
|
|||||||
platforms = [ "i686-linux" "x86_64-linux" ];
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
||||||
maintainers = [ maintainers.vcunat ];
|
maintainers = [ maintainers.vcunat ];
|
||||||
priority = 4; # resolves collision with xorg-server's "lib/xorg/modules/extensions/libglx.so"
|
priority = 4; # resolves collision with xorg-server's "lib/xorg/modules/extensions/libglx.so"
|
||||||
|
inherit broken;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user