Merge pull request #317744 from viraptor/x2vnc-darwin

x2vnc: set C standard
This commit is contained in:
Stanisław Pitucha 2024-07-31 11:45:37 +10:00 committed by GitHub
commit 5fbeaf6d89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,9 +9,11 @@ stdenv.mkDerivation rec {
sha256 = "00bh9j3m6snyd2fgnzhj5vlkj9ibh69gfny9bfzlxbnivb06s1yw";
};
env.NIX_CFLAGS_COMPILE = "-std=gnu89";
buildInputs = with xorg; [
libX11 xorgproto libXext libXrandr
];
libX11 xorgproto libXext libXrandr
];
hardeningDisable = [ "format" ];