Skip to content

Commit

Permalink
devcontainer: 0.71.0 → 0.72.0, fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
sikmir committed Dec 27, 2024
1 parent 3c14d26 commit 72df188
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pkgs/by-name/de/devcontainer/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,27 @@
fetchYarnDeps,
fetchFromGitHub,
fixup-yarn-lock,
nodejs,
nodejs_20,
python3,
makeBinaryWrapper,
git,
docker,
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 {
Expand Down

0 comments on commit 72df188

Please sign in to comment.