Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion cross-js.nix
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ pkgs.mkShell ({
(pkgs.pkg-config or pkgconfig)
(tool "happy")
(tool "alex")
stdenv.cc.cc.lib ]) ++ (with pkgs.buildPackages; [
stdenv.cc.cc.lib
which
]) ++ (with pkgs.buildPackages; [
])
++ builtins.attrValues haskell-tools
++ pkgs.lib.optional withIOG
Expand Down
4 changes: 3 additions & 1 deletion cross-windows.nix
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,9 @@ pkgs.pkgsBuildBuild.mkShell ({
(pkgsBuildBuild.pkg-config or pkgsBuildBuild.pkgconfig)
(tool "happy")
(tool "alex")
stdenv.cc.cc.lib ])
stdenv.cc.cc.lib
pkgsBuildBuild.which
])
++ map pkgs.lib.getDev (with pkgs; [
zlib pcre openssl
windows.mcfgthreads
Expand Down
1 change: 1 addition & 0 deletions dynamic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ pkgs.mkShell {
openssl
pcre
pkg-config
which
zlib
])
++ optional stdenv.hostPlatform.isLinux pkgs.systemd
Expand Down
4 changes: 3 additions & 1 deletion static.nix
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,9 @@ pkgs.mkShell (rec {
(compiler.override { enableShared = true; })
] ++ (with pkgs; [
(pkgs.pkg-config or pkgconfig)
stdenv.cc.cc.lib ]) ++ (with pkgs.buildPackages; [
stdenv.cc.cc.lib
which
]) ++ (with pkgs.buildPackages; [
])
++ builtins.attrValues haskell-tools
++ pkgs.lib.optional withIOG (with pkgs; [ cddl cbor-diag ])
Expand Down
Loading