summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Angermann <moritz.angermann@gmail.com>2021-03-04 10:49:56 +0800
committerMoritz Angermann <moritz.angermann@gmail.com>2021-03-07 22:19:22 +0800
commit4bea83afec009dfd3c6313cac4610d00ba1f9a3d (patch)
tree96e8b9121edb306e0df6604174a8e50217cbd748
parent33c4d497545559a38bd8d1caf6c94e5e2a77647b (diff)
downloadhaskell-4bea83afec009dfd3c6313cac4610d00ba1f9a3d.tar.gz
[ci/nix-shell] Add Foundation and Security
-rw-r--r--.gitlab/shell.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab/shell.nix b/.gitlab/shell.nix
index 191916671f..70d3d08ffa 100644
--- a/.gitlab/shell.nix
+++ b/.gitlab/shell.nix
@@ -11,7 +11,7 @@
# the real fix is to teach terminfo to use libcurses on macOS.
CONFIGURE_ARGS = "--with-intree-gmp --with-curses-libraries=${pkgs.ncurses.out}/lib";
- buildInputs = with pkgs; [
+ buildInputs = (with pkgs; [
haskell.compiler.${compiler}
haskell.packages.${compiler}.cabal-install
haskell.packages.${compiler}.alex
@@ -47,6 +47,6 @@
xz
xlibs.lndir
- cacert
- ];
+ cacert ])
+ ++ (with pkgs.darwin.apple_sdk.frameworks; [ Foundation Security ]);
}