aboutsummaryrefslogtreecommitdiff
path: root/default.nix
blob: a8c75d85b30437c83af1fef26b3c918562e322d9 (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
{ nixpkgs ? import <nixpkgs> {}, compiler ? "ghc8107", doBenchmark ? false }:

let

  inherit (nixpkgs) pkgs;

  f = { mkDerivation, aeson, base, blaze-html, blaze-markup
      , bytestring, cassava, conduit, conferer, conferer-aeson
      , conferer-warp, conferer-yaml, containers, data-default-class
      , directory, either, extra, fmt, http-api-data, http-media, lens
      , lib, monad-logger, mtl, path-pieces, persistent
      , persistent-postgresql, protocol-buffers
      , protocol-buffers-descriptor, regex-tdfa, resource-pool, servant
      , servant-docs, servant-server, servant-swagger, servant-websockets
      , shakespeare, stm, swagger2, text, time, timezone-olson
      , timezone-series, transformers, unliftio-core, uuid, vector
      , vector-algorithms, wai-extra, warp, websockets, yesod, yesod-form
      , zip-archive, prometheus-client, prometheus-metrics-ghc
      }:
      mkDerivation {
        pname = "tracktrain";
        version = "0.1.0.0";
        src = ./.;
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
          aeson base blaze-html blaze-markup bytestring cassava conduit
          conferer conferer-warp containers either extra fmt http-api-data
          http-media lens monad-logger mtl path-pieces persistent
          persistent-postgresql protocol-buffers protocol-buffers-descriptor
          regex-tdfa resource-pool servant servant-docs servant-server
          servant-swagger servant-websockets shakespeare stm swagger2 text
          time timezone-olson timezone-series transformers unliftio-core uuid
          vector vector-algorithms warp websockets yesod yesod-form
          zip-archive prometheus-client prometheus-metrics-ghc
        ];
        executableHaskellDepends = [
          aeson base bytestring conferer conferer-aeson conferer-yaml
          data-default-class directory extra fmt monad-logger
          persistent-postgresql protocol-buffers time wai-extra warp
        ];
        doHaddock = false;
        description = "tracktrain tracks trains on their traintracks";
        license = "unknown";
        hydraPlatforms = lib.platforms.none;
      };

  haskellPackages = if compiler == "default"
                       then pkgs.haskellPackages
                       else pkgs.haskell.packages.${compiler};

  variant = if doBenchmark then pkgs.haskell.lib.doBenchmark else pkgs.lib.id;

  drv = variant (haskellPackages.callPackage f {});

  # this removes the /lib directory from the built derivation, which depends on ghc.
  # this dramatically reduces closure size
  stripLib = drv: pkgs.stdenv.mkDerivation {
    name = drv.name + "-without-lib";
    src = drv.outPath;
    buildPhase = ''
      mkdir -p $out
      cp -r $src/bin $out
    '';
    phases = [ "buildPhase" ];
  };
in stripLib drv