Fix utf-8
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
qvalentin 2023-06-20 17:54:50 +02:00
parent 6e43e10d1f
commit eedc21fb8e
6 changed files with 233 additions and 10 deletions

View file

@ -0,0 +1,16 @@
let
sources = import ./sources.nix;
pkgs = import sources.nixpkgs { };
in
# See https://docs.haskellstack.org/en/stable/nix_integration/#using-a-custom-shellnix-file
{ ghc }:
pkgs.haskell.lib.buildStackProject {
inherit ghc;
name = "haskell-stack-nix";
# System dependencies needed at compilation time
buildInputs = [
pkgs.zlib
];
}