devcontainer: fix build on nixos-unstable (#64)

This commit is contained in:
Jonas Chevalier 2023-07-18 17:31:21 +02:00 committed by GitHub
parent ae6d994038
commit 30ea4a75cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
];
};