Unverified Commit 75badf05 authored by Nikolay Korotkiy's avatar Nikolay Korotkiy Committed by GitHub
Browse files

devcontainer: 0.71.0 → 0.72.0, fix build (#368516)

parents d4feb3fb b5d22b3c
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
  fetchYarnDeps,
  fetchFromGitHub,
  fixup-yarn-lock,
  nodejs,
  nodejs_20,
  python3,
  makeBinaryWrapper,
  git,
@@ -12,15 +12,19 @@
  yarn,
  docker-compose,
}:

let
  nodejs = nodejs_20; # does not build with 22
in
stdenv.mkDerivation (finalAttrs: {
  pname = "devcontainer";
  version = "0.71.0";
  version = "0.72.0";

  src = fetchFromGitHub {
    owner = "devcontainers";
    repo = "cli";
    rev = "refs/tags/v${finalAttrs.version}";
    hash = "sha256-plIDK5nOvLKFlRVlPHgpjHPhIh0NAWHmbaKsnYCU/7k=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-3rSWD6uxwcMQdHBSmmAQ0aevqevVXINigCj06jjEcRc=";
  };

  yarnOfflineCache = fetchYarnDeps {