We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d4feb3f + b5d22b3 commit 75badf0Copy full SHA for 75badf0
pkgs/by-name/de/devcontainer/package.nix
@@ -4,23 +4,27 @@
4
fetchYarnDeps,
5
fetchFromGitHub,
6
fixup-yarn-lock,
7
- nodejs,
+ nodejs_20,
8
python3,
9
makeBinaryWrapper,
10
git,
11
docker,
12
yarn,
13
docker-compose,
14
}:
15
+
16
+let
17
+ nodejs = nodejs_20; # does not build with 22
18
+in
19
stdenv.mkDerivation (finalAttrs: {
20
pname = "devcontainer";
- version = "0.71.0";
21
+ version = "0.72.0";
22
23
src = fetchFromGitHub {
24
owner = "devcontainers";
25
repo = "cli";
- rev = "refs/tags/v${finalAttrs.version}";
- hash = "sha256-plIDK5nOvLKFlRVlPHgpjHPhIh0NAWHmbaKsnYCU/7k=";
26
+ tag = "v${finalAttrs.version}";
27
+ hash = "sha256-3rSWD6uxwcMQdHBSmmAQ0aevqevVXINigCj06jjEcRc=";
28
};
29
30
yarnOfflineCache = fetchYarnDeps {
0 commit comments