Skip to content

Commit b5d22b3

Browse files
committed
devcontainer: 0.71.0 → 0.72.0, fix build
1 parent 3c14d26 commit b5d22b3

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

pkgs/by-name/de/devcontainer/package.nix

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,27 @@
44
fetchYarnDeps,
55
fetchFromGitHub,
66
fixup-yarn-lock,
7-
nodejs,
7+
nodejs_20,
88
python3,
99
makeBinaryWrapper,
1010
git,
1111
docker,
1212
yarn,
1313
docker-compose,
1414
}:
15+
16+
let
17+
nodejs = nodejs_20; # does not build with 22
18+
in
1519
stdenv.mkDerivation (finalAttrs: {
1620
pname = "devcontainer";
17-
version = "0.71.0";
21+
version = "0.72.0";
1822

1923
src = fetchFromGitHub {
2024
owner = "devcontainers";
2125
repo = "cli";
22-
rev = "refs/tags/v${finalAttrs.version}";
23-
hash = "sha256-plIDK5nOvLKFlRVlPHgpjHPhIh0NAWHmbaKsnYCU/7k=";
26+
tag = "v${finalAttrs.version}";
27+
hash = "sha256-3rSWD6uxwcMQdHBSmmAQ0aevqevVXINigCj06jjEcRc=";
2428
};
2529

2630
yarnOfflineCache = fetchYarnDeps {

0 commit comments

Comments
 (0)