forked from input-output-hk/cardano-sl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
207 lines (194 loc) · 8.94 KB
/
default.nix
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
let
localLib = import ./lib.nix;
jemallocOverlay = self: super: {
# jemalloc has a bug that caused cardano-sl-db to fail to link (via
# rocksdb, which can use jemalloc).
# https://github.com/jemalloc/jemalloc/issues/937
# Using jemalloc 510 with the --disable-initial-exec-tls flag seems to
# fix it.
jemalloc = self.callPackage ./nix/jemalloc/jemalloc510.nix {};
};
in
{ system ? builtins.currentSystem
, config ? {}
, gitrev ? localLib.commitIdFromGitRepo ./.git
, buildId ? null
, pkgs ? (import (localLib.fetchNixPkgs) { inherit system config; overlays = [ jemallocOverlay ]; })
# profiling slows down performance by 50% so we don't enable it by default
, forceDontCheck ? false
, enableProfiling ? false
, enableDebugging ? false
, enableBenchmarks ? true
, allowCustomConfig ? true
}:
with pkgs.lib;
with pkgs.haskell.lib;
let
justStaticExecutablesGitRev = import ./scripts/set-git-rev {
inherit pkgs gitrev;
inherit (cardanoPkgs) ghc;
};
addRealTimeTestLogs = drv: overrideCabal drv (attrs: {
testTarget = "--show-details=streaming";
});
cardanoPkgs = ((import ./pkgs { inherit pkgs; }).override {
ghc = overrideDerivation pkgs.haskell.compiler.ghc822 (drv: {
patches = drv.patches ++ [ ./ghc-8.0.2-darwin-rec-link.patch ];
});
overrides = self: super: {
srcroot = ./.;
cardano-sl-core = overrideCabal super.cardano-sl-core (drv: {
configureFlags = (drv.configureFlags or []) ++ [
"-f-asserts"
];
});
cardano-sl = overrideCabal super.cardano-sl (drv: {
# production full nodes shouldn't use wallet as it means different constants
configureFlags = (drv.configureFlags or []) ++ [
"-f-asserts"
];
# waiting on load-command size fix in dyld
doCheck = ! pkgs.stdenv.isDarwin;
passthru = {
inherit enableProfiling;
};
});
cardano-sl-wallet-static = justStaticExecutablesGitRev super.cardano-sl-wallet;
cardano-sl-client = addRealTimeTestLogs super.cardano-sl-client;
cardano-sl-generator = addRealTimeTestLogs super.cardano-sl-generator;
cardano-sl-auxx = justStaticExecutablesGitRev super.cardano-sl-auxx;
cardano-sl-wallet-new = justStaticExecutablesGitRev super.cardano-sl-wallet-new;
cardano-sl-tools = justStaticExecutablesGitRev (overrideCabal super.cardano-sl-tools (drv: {
# waiting on load-command size fix in dyld
doCheck = ! pkgs.stdenv.isDarwin;
}));
cardano-sl-node-static = justStaticExecutablesGitRev self.cardano-sl-node;
cardano-sl-explorer-static = justStaticExecutablesGitRev self.cardano-sl-explorer;
cardano-report-server-static = justStaticExecutablesGitRev self.cardano-report-server;
# Undo configuration-nix.nix change to hardcode security binary on darwin
# This is needed for macOS binary not to fail during update system (using http-client-tls)
# Instead, now the binary is just looked up in $PATH as it should be installed on any macOS
x509-system = overrideDerivation super.x509-system (drv: {
postPatch = ":";
});
# TODO: get rid of pthreads option once cryptonite 0.25 is released
# DEVOPS-393: https://github.com/haskell-crypto/cryptonite/issues/193
cryptonite = appendPatch (appendConfigureFlag super.cryptonite "--ghc-option=-optl-pthread") ./pkgs/cryptonite-segfault-blake.patch;
# Due to https://github.com/input-output-hk/stack2nix/issues/56
hfsevents = self.callPackage ./pkgs/hfsevents.nix { inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa CoreServices; };
mkDerivation = args: super.mkDerivation (args // {
enableLibraryProfiling = enableProfiling;
enableExecutableProfiling = enableProfiling;
# Static linking for everything to work around
# https://ghc.haskell.org/trac/ghc/ticket/14444
# This will be the default in nixpkgs since
# https://github.com/NixOS/nixpkgs/issues/29011
enableSharedExecutables = false;
} // optionalAttrs (enableBenchmarks && localLib.isCardanoSL args.pname) ({
# Enables building but not running of benchmarks for all
# cardano-sl packages when enableBenchmarks argument is true.
doBenchmark = true;
configureFlags = (args.configureFlags or []) ++ ["--enable-benchmarks"];
} // optionalAttrs (localLib.isBenchmark args) {
# Provide a dummy installPhase for benchmark packages.
installPhase = "mkdir -p $out";
}) // optionalAttrs (args ? src) {
src = localLib.cleanSourceTree args.src;
} // optionalAttrs enableDebugging {
# TODO: DEVOPS-355
dontStrip = true;
configureFlags = (args.configureFlags or []) ++ [ "--ghc-options=-g --disable-executable-stripping --disable-library-stripping" "--profiling-detail=toplevel-functions"];
} // optionalAttrs (forceDontCheck == true) {
doCheck = false;
});
};
});
connect = let
walletConfigFile = ./custom-wallet-config.nix;
walletConfig = if allowCustomConfig then (if builtins.pathExists walletConfigFile then import walletConfigFile else {}) else {};
in
args: pkgs.callPackage ./scripts/launch/connect-to-cluster (args // { inherit gitrev; } // walletConfig );
other = rec {
walletIntegrationTests = pkgs.callPackage ./scripts/test/wallet/integration { inherit gitrev; };
validateJson = pkgs.callPackage ./tools/src/validate-json {};
demoCluster = pkgs.callPackage ./scripts/launch/demo-cluster { inherit gitrev; };
demoClusterLaunchGenesis = pkgs.callPackage ./scripts/launch/demo-cluster {
inherit gitrev;
launchGenesis = true;
configurationKey = "testnet_full";
runWallet = false;
};
tests = let
src = localLib.cleanSourceTree ./.;
in {
shellcheck = pkgs.callPackage ./scripts/test/shellcheck.nix { inherit src; };
hlint = pkgs.callPackage ./scripts/test/hlint.nix { inherit src; };
stylishHaskell = pkgs.callPackage ./scripts/test/stylish.nix { inherit (cardanoPkgs) stylish-haskell; inherit src localLib; };
walletIntegration = pkgs.callPackage ./scripts/test/wallet/integration/build-test.nix { inherit walletIntegrationTests pkgs; };
swaggerSchemaValidation = pkgs.callPackage ./scripts/test/wallet/swaggerSchemaValidation.nix { inherit gitrev; };
};
cardano-sl-explorer-frontend = (import ./explorer/frontend {
inherit system config gitrev pkgs;
cardano-sl-explorer = cardanoPkgs.cardano-sl-explorer-static;
});
all-cardano-sl = pkgs.buildEnv {
name = "all-cardano-sl";
paths = attrValues (filterAttrs (name: drv: localLib.isCardanoSL name) cardanoPkgs);
ignoreCollisions = true;
};
mkDocker = { environment, connectArgs ? {} }: import ./docker.nix { inherit environment connect gitrev pkgs connectArgs; };
stack2nix = import (pkgs.fetchFromGitHub {
owner = "avieth";
repo = "stack2nix";
rev = "c51db2d31892f7c4e7ff6acebe4504f788c56dca";
sha256 = "10jcj33sxpq18gxf3zcck5i09b2y4jm6qjggqdlwd9ss86wg3ksb";
}) { inherit pkgs; };
inherit (pkgs) purescript;
connectScripts = {
mainnet = {
wallet = connect {};
explorer = connect { executable = "explorer"; };
};
staging = {
wallet = connect { environment = "mainnet-staging"; };
explorer = connect { executable = "explorer"; environment = "mainnet-staging"; };
};
testnet = {
wallet = connect { environment = "testnet"; };
explorer = connect { executable = "explorer"; environment = "testnet"; };
};
demoWallet = connect { environment = "demo"; };
};
dockerImages = {
mainnet.wallet = mkDocker { environment = "mainnet"; };
staging.wallet = mkDocker { environment = "mainnet-staging"; };
testnet.wallet = mkDocker { environment = "testnet"; };
};
cardano-sl-config = pkgs.runCommand "cardano-sl-config" {} ''
mkdir -p $out/lib
cp -R ${./log-configs} $out/log-configs
cp ${./lib}/configuration.yaml $out/lib
cp ${./lib}/*genesis*.json $out/lib
'';
daedalus-bridge = let
inherit (cardanoPkgs.cardano-sl-node) version;
in pkgs.runCommand "cardano-daedalus-bridge-${version}" {
inherit version gitrev buildId;
} ''
# Generate daedalus-bridge
mkdir -p $out/bin
cd $out
${optionalString (buildId != null) "echo ${buildId} > build-id"}
echo ${gitrev} > commit-id
echo ${version} > version
cp --no-preserve=mode -R ${cardano-sl-config}/lib config
cp ${cardano-sl-config}/log-configs/daedalus.yaml $out/config/log-config-prod.yaml
cp ${cardanoPkgs.cardano-sl-tools}/bin/cardano-launcher bin
cp ${cardanoPkgs.cardano-sl-tools}/bin/cardano-x509-certificates bin
cp ${cardanoPkgs.cardano-sl-wallet-new}/bin/cardano-node bin
# test that binaries exit with 0
./bin/cardano-node --help > /dev/null
HOME=$TMP ./bin/cardano-launcher --help > /dev/null
'';
};
in cardanoPkgs // other