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
jekyll,
5
cmake,
6
fetchFromGitHub,
0
7
gtest,
8
}:
9
···
21
repo = "jsonnet";
22
sha256 = "sha256-QHp0DOu/pqcgN7di219cHzfFb7fWtdGGE6J1ZXgbOGQ=";
23
};
0
0
0
0
0
0
0
0
24
25
nativeBuildInputs = [
26
jekyll
···
4
jekyll,
5
cmake,
6
fetchFromGitHub,
7
+
fetchpatch,
8
gtest,
9
}:
10
···
22
repo = "jsonnet";
23
sha256 = "sha256-QHp0DOu/pqcgN7di219cHzfFb7fWtdGGE6J1ZXgbOGQ=";
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
+
];
33
34
nativeBuildInputs = [
35
jekyll