summaryrefslogtreecommitdiff
path: root/flake.nix
blob: 578364667d94093c10fc0829218b9758ae00d8c9 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
  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"
      ]
      ++ commonGhcFlags;
    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 Main"
      ]
      ++ commonGhcFlags;
    noHaddockOptions = "";
    commonGhcFlags = [
      "-i./src"
      "-threaded"
      "-rtsopts"
      "-with-rtsopts=-N"
      "-main-is Main"
    ];
    ghcPackages = p: [
    ];
    buildDeps = [
      pkgs.pkg-config
      pkgs.wayland-protocols
      pkgs.wayland-scanner

      pkgs.egl-wayland
      pkgs.libGL
      pkgs.libxkbcommon
      pkgs.wayland
      pkgs.xorg.libX11
      pkgs.xorg.libXcursor
      pkgs.xorg.libXi
      pkgs.xorg.libXrandr
    ];
  in {
    packages.${system} = {
      debug = pkgs.callPackage ./package.nix {
        ghcOptions = debugGhcOptions;
        haddockOptions = noHaddockOptions;
        inherit ghcPackages;
        inherit buildDeps;
      };
      release = pkgs.callPackage ./package.nix {
        ghcOptions = releaseGhcOptions;
        haddockOptions = noHaddockOptions;
        inherit ghcPackages;
        inherit buildDeps;
      };
      docs = pkgs.callPackage ./package.nix {
        ghcOptions = "--version";
        inherit haddockOptions;
        inherit ghcPackages;
        inherit buildDeps;
      };
      default = pkgs.callPackage ./package.nix {
        ghcOptions = releaseGhcOptions;
        inherit haddockOptions;
        inherit ghcPackages;
        inherit buildDeps;
      };
    };
  };
}