Created
May 26, 2019 18:55
-
-
Save chrissound/9d19b50bacb297c573fcb60ff419f084 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { pkgs ? import <nixpkgs> {}, ghc ? pkgs.ghc }: | |
| pkgs.haskell.lib.buildStackProject { | |
| name = "app"; | |
| inherit ghc; | |
| buildInputs = with pkgs; [ zlib unzip ]; | |
| LANG = "en_US.UTF-8"; | |
| src = ./app.zip; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment