diff options
author | Mathieu Boespflug <mboes@tweag.net> | 2020-06-08 02:32:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-07 17:32:16 -0700 |
commit | 9d076ed7ea97463b15cfd889027beebacc910c9c (patch) | |
tree | 21778b4394f99285c0a9082a6e3517ce8cf6d573 | |
parent | 7c6dbd37eb3e785f875e0030d723e422db72d453 (diff) | |
download | pandoc-9d076ed7ea97463b15cfd889027beebacc910c9c.tar.gz |
Make it possible to compile using Stack on NixOS (#6439)
On NixOS, it is necessary to compile with `stack --nix`. It is
furthermore necessary to provide zlib headers when `--nix` is enabled.
-rw-r--r-- | stack.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stack.yaml b/stack.yaml index 183ddb10d..439696f54 100644 --- a/stack.yaml +++ b/stack.yaml @@ -33,3 +33,5 @@ extra-deps: ghc-options: "$locals": -fhide-source-paths -Wno-missing-home-modules resolver: lts-14.6 +nix: + packages: [zlib] |