summaryrefslogtreecommitdiff
path: root/flake.nix
blob: 6468b28cacb8402dd7a9df6a7eef93706fd079ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
  inputs = {
    nixpkgs.url = "nixpkgs/nixpkgs-unstable";
  };
  outputs = {nixpkgs, ...}: let
    system = "x86_64-linux";
    pkgs = nixpkgs.legacyPackages.${system};
    debugGhcOptions = pkgs.lib.concatStringsSep " " (debugGhcFlags ++ commonGhcFlags);
    debugGhcFlags = [
      "-O0"
      "-Wall"
      "-Widentities"
      "-Wincomplete-record-updates"
      "-Wincomplete-uni-patterns"
      # "-Wmissing-export-lists"
      "-Wmissing-home-modules"
      "-Wpartial-fields"
      "-Wredundant-constraints"
      "-threaded"
      "-rtsopts"
      "-with-rtsopts=-N"
      "-main-is Game"
    ];
    haddockOptions = pkgs.lib.concatStringsSep " " haddockFlags;
    haddockFlags = [
      "--html"
      "--odir docs"
      "--optghc=-i./src"
      "src/Game.hs"
    ];
    releaseGhcOptions = pkgs.lib.concatStringsSep " " (releaseGhcFlags ++ commonGhcFlags);
    releaseGhcFlags = [
      "-O2"
      "-threaded"
      "-rtsopts"
      "-with-rtsopts=-N"
      "-main-is Game"
    ];
    noHaddockOptions = "";
    commonGhcFlags = [
      "-i./src"
    ];
    ghcPackages = p: [
      p.GLFW-b
      p.linear
      p.OpenGL
    ];
  in {
    packages.${system} = {
      debug = pkgs.callPackage ./package.nix {
        ghcOptions = debugGhcOptions;
        haddockOptions = noHaddockOptions;
        inherit ghcPackages;
      };
      release = pkgs.callPackage ./package.nix {
        ghcOptions = releaseGhcOptions;
        haddockOptions = noHaddockOptions;
        inherit ghcPackages;
      };
      docs = pkgs.callPackage ./package.nix {
        ghcOptions = "--version";
        inherit haddockOptions;
        inherit ghcPackages;
      };
      default = pkgs.callPackage ./package.nix {
        ghcOptions = releaseGhcOptions;
        inherit haddockOptions;
        inherit ghcPackages;
      };
    };
  };
}