Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save chrissound/9d19b50bacb297c573fcb60ff419f084 to your computer and use it in GitHub Desktop.

Select an option

Save chrissound/9d19b50bacb297c573fcb60ff419f084 to your computer and use it in GitHub Desktop.
{ 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