Skip to content

Commit

Permalink
devcontainer: fix build on nixos-unstable (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
zimbatm committed Jul 18, 2023
1 parent ae6d994 commit 30ea4a7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion images/devcontainer/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,12 @@ let
shadow

# for the vscode extension
gcc-unwrapped

# HACK: don't include the "libgcc" output. It has overlapping files with
# the "lib" output, and that breaks the build.
(gcc-unwrapped // {
outputs = builtins.filter (x: x != "libgcc") gcc-unwrapped.outputs;
})
iproute
];
};
Expand Down

0 comments on commit 30ea4a7

Please sign in to comment.