tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
jsonnet: fix for CMake v4
Guilhem Saurel
5 months ago
eb91633d
abc1df4a
+9
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
js
jsonnet
package.nix
+9
pkgs/by-name/js/jsonnet/package.nix
···
4
4
jekyll,
5
5
cmake,
6
6
fetchFromGitHub,
7
7
+
fetchpatch,
7
8
gtest,
8
9
}:
9
10
···
21
22
repo = "jsonnet";
22
23
sha256 = "sha256-QHp0DOu/pqcgN7di219cHzfFb7fWtdGGE6J1ZXgbOGQ=";
23
24
};
25
25
+
26
26
+
patches = [
27
27
+
# ref. https://github.com/google/jsonnet/pull/1249 merged upstream
28
28
+
(fetchpatch {
29
29
+
url = "https://github.com/google/jsonnet/commit/6c87c1b0e1e18d25898be071c1b231e264f05a8c.patch";
30
30
+
hash = "sha256-KprhMKwUCpvLiMT/grfqZ8Vt9rbosIizQgNMStuV8/U=";
31
31
+
})
32
32
+
];
24
33
25
34
nativeBuildInputs = [
26
35
jekyll