forked from mirrors/nixpkgs
libglvnd: fix darwin
Unfortunately this had been broken for a while and i just realized it was broken. This adds a patch from upstream that fixes the issue (missing _u_execmem symbol).
This commit is contained in:
parent
ad2585e350
commit
fb5bd7256d
|
@ -38,7 +38,11 @@ in stdenv.mkDerivation rec {
|
||||||
url = "https://github.com/NVIDIA/libglvnd/commit/0177ade40262e31a80608a8e8e52d3da7163dccf.patch";
|
url = "https://github.com/NVIDIA/libglvnd/commit/0177ade40262e31a80608a8e8e52d3da7163dccf.patch";
|
||||||
sha256 = "1rnz5jw2gvx4i1lcp0k85jz9xgr3dgzsd583m2dlxkaf2a09j89d";
|
sha256 = "1rnz5jw2gvx4i1lcp0k85jz9xgr3dgzsd583m2dlxkaf2a09j89d";
|
||||||
})
|
})
|
||||||
];
|
] ++ stdenv.lib.optional stdenv.isDarwin
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/NVIDIA/libglvnd/commit/294ccb2f49107432567e116e13efac586580a4cc.patch";
|
||||||
|
sha256 = "01339wg27cypv93221rhk3885vxbsg8kvbfyia77jmjdcnwrdwm2";
|
||||||
|
});
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
passthru = { inherit driverLink; };
|
passthru = { inherit driverLink; };
|
||||||
|
|
Loading…
Reference in a new issue