devcontainer: fix build on nixos-unstable (#64)
This commit is contained in:
parent
ae6d994038
commit
30ea4a75cd
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
];
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue