Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/project-overlays.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
packages = final.shell.nativeBuildInputs
# devshell does not use pkgs.mkShell / pkgs.stdenv.mkDerivation,
# so we need to explicit required dependencies which
# are provided implicitely when using the normal shell:
++ (with final.pkgs; [ binutils git gcc glibc gawk gnugrep bash coreutils pkg-config ]);
# are provided implicitely by stdenv when using the normal shell:
++ final.shell.stdenv.defaultNativeBuildInputs
++ final.shell.stdenv.extraNativeBuildInputs;
env = lib.mapAttrsToList lib.nameValuePair {
inherit (final.shell) CABAL_CONFIG NIX_GHC_LIBDIR;
};
Expand Down