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
|
{ nixpkgs ? import <nixpkgs> {}, compiler ? "default", 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, exceptions, extra, fmt, hoauth2, http-api-data
, http-media, insert-ordered-containers, lens, lib, monad-logger
, mtl, path-pieces, persistent, persistent-postgresql
, prometheus-client, prometheus-metrics-ghc, proto-lens
, proto-lens-runtime, 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, uri-bytestring
, uuid, vector, vector-algorithms, wai-extra, warp, websockets
, yesod, yesod-auth, yesod-auth-oauth2, yesod-core, yesod-form
, zip-archive
}:
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 exceptions extra fmt
hoauth2 http-api-data http-media insert-ordered-containers lens
monad-logger mtl path-pieces persistent persistent-postgresql
prometheus-client prometheus-metrics-ghc proto-lens
proto-lens-runtime 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 uri-bytestring uuid vector vector-algorithms warp
websockets yesod yesod-auth yesod-auth-oauth2 yesod-core yesod-form
zip-archive
];
executableHaskellDepends = [
aeson base bytestring conferer conferer-aeson conferer-yaml
data-default-class directory extra fmt monad-logger
persistent-postgresql proto-lens time wai-extra warp
];
doHaddock = false;
postInstall = ''
cp -r $src/assets $out/assets
'';
description = "tracktrain tracks trains on their traintracks";
license = "unknown";
mainProgram = "tracktrain";
};
haskellPackages = if compiler == "default"
then pkgs.haskellPackages
else pkgs.haskell.packages.${compiler};
variant = if doBenchmark then pkgs.haskell.lib.doBenchmark else pkgs.lib.id;
# we can override haskell packages in nix here; but attempt to minimise that
# since builds get pretty expensive when we do.
# (currently kept as a dummy)
hpkgs = haskellPackages.override {
overrides = self: super: with pkgs.haskell.lib.compose; {
# conferer-warp = markUnbroken super.conferer-warp;
};
};
drv = variant (hpkgs.callPackage f {});
in with pkgs.haskell.lib;
justStaticExecutables drv
|