Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

jsonnet: fix for CMake v4

+9
+9
pkgs/by-name/js/jsonnet/package.nix
··· 4 4 jekyll, 5 5 cmake, 6 6 fetchFromGitHub, 7 + fetchpatch, 7 8 gtest, 8 9 }: 9 10 ··· 21 22 repo = "jsonnet"; 22 23 sha256 = "sha256-QHp0DOu/pqcgN7di219cHzfFb7fWtdGGE6J1ZXgbOGQ="; 23 24 }; 25 + 26 + patches = [ 27 + # ref. https://github.com/google/jsonnet/pull/1249 merged upstream 28 + (fetchpatch { 29 + url = "https://github.com/google/jsonnet/commit/6c87c1b0e1e18d25898be071c1b231e264f05a8c.patch"; 30 + hash = "sha256-KprhMKwUCpvLiMT/grfqZ8Vt9rbosIizQgNMStuV8/U="; 31 + }) 32 + ]; 24 33 25 34 nativeBuildInputs = [ 26 35 jekyll