lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #284584 from mfrischknecht/fix-fbjni-build

fbjni: fix broken build due to missing `cstdint` include

authored by

Nick Cao and committed by
GitHub
a46bee7c cb8d00f6

+8
+8
pkgs/development/libraries/fbjni/default.nix
··· 19 19 }; 20 20 21 21 patches = [ 22 + # Upstram fix for builds on GCC 13. Should be removable with next release after 0.5.1 23 + (fetchpatch { 24 + name = "add-cstdint-include.patch"; 25 + url = "https://github.com/facebookincubator/fbjni/commit/59461eff6c7881d58e958287481e1f1cd99e08d3.patch"; 26 + hash = "sha256-r27C+ODTCZdd1tEz3cevnNNyZlrRhq1jOzwnIYlkglM="; 27 + }) 28 + 22 29 # Part of https://github.com/facebookincubator/fbjni/pull/76 23 30 # fix cmake file installation directory 24 31 (fetchpatch { 25 32 url = "https://github.com/facebookincubator/fbjni/commit/ab02e60b5da28647bfcc864b0bb1b9a90504cdb1.patch"; 26 33 sha256 = "sha256-/h6kosulRH/ZAU2u0zRSaNDK39jsnFt9TaSxyBllZqM="; 27 34 }) 35 + 28 36 # install headers 29 37 (fetchpatch { 30 38 url = "https://github.com/facebookincubator/fbjni/commit/74e125caa9a815244f1e6bd08eaba57d015378b4.patch";