mirror of
https://github.com/newtype256/website.git
synced 2025-07-05 19:56:26 +02:00
8 lines
206 B
Nix
8 lines
206 B
Nix
{ pkgs ? import <nixpkgs> { }, ghc ? pkgs.ghc }:
|
|
pkgs.haskell.lib.buildStackProject {
|
|
name = "newtype.fr";
|
|
inherit ghc;
|
|
buildInputs = with pkgs; [ zlib ];
|
|
LANG = "en_US.UTF-8";
|
|
TMPDIR = "/tmp";
|
|
}
|