diff options
author | Moritz Angermann <moritz.angermann@gmail.com> | 2021-03-04 10:49:56 +0800 |
---|---|---|
committer | Moritz Angermann <moritz.angermann@gmail.com> | 2021-05-07 09:19:47 +0800 |
commit | 3f09c6f8f81f14aa7d8b9a3ccbebe7aabdb4e374 (patch) | |
tree | 6d9fc3b678809dd7970559ff908ce3ea74b5063d /.gitlab | |
parent | 035f4bb1dc9dfdaed7a22692180ea77021e1121e (diff) | |
download | haskell-3f09c6f8f81f14aa7d8b9a3ccbebe7aabdb4e374.tar.gz |
[ci/nix-shell] Add Foundation and Security
(cherry picked from commit 4bea83afec009dfd3c6313cac4610d00ba1f9a3d)
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/shell.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab/shell.nix b/.gitlab/shell.nix index f5c691ffaa..8b8353a769 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 ]); } |