This repository was archived by the owner on Aug 18, 2020. It is now read-only.
File tree 4 files changed +8
-6
lines changed
4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 57
57
cardano-sl-wallet-static = justStaticExecutablesGitRev super . cardano-sl-wallet ;
58
58
cardano-sl-client = addRealTimeTestLogs super . cardano-sl-client ;
59
59
cardano-sl-generator = addRealTimeTestLogs super . cardano-sl-generator ;
60
- cardano-sl-auxx = justStaticExecutablesGitRev super . cardano-sl-auxx ;
61
- cardano-sl-wallet-new = justStaticExecutablesGitRev super . cardano-sl-wallet-new ;
60
+ cardano-sl-auxx-static = justStaticExecutablesGitRev super . cardano-sl-auxx ;
61
+ cardano-sl-wallet-new-static = justStaticExecutablesGitRev super . cardano-sl-wallet-new ;
62
62
cardano-sl-node-static = justStaticExecutablesGitRev self . cardano-sl-node ;
63
63
cardano-sl-explorer-static = justStaticExecutablesGitRev self . cardano-sl-explorer ;
64
64
cardano-report-server-static = justStaticExecutablesGitRev self . cardano-report-server ;
65
- cardano-sl-tools = justStaticExecutablesGitRev ( overrideCabal super . cardano-sl-tools ( drv : {
65
+ cardano-sl-tools-static = justStaticExecutablesGitRev ( overrideCabal super . cardano-sl-tools ( drv : {
66
66
# waiting on load-command size fix in dyld
67
67
doCheck = ! pkgs . stdenv . isDarwin ;
68
68
} ) ) ;
Original file line number Diff line number Diff line change 39
39
cardano-sl-wallet-new = supportedSystems ;
40
40
all-cardano-sl = supportedSystems ;
41
41
cardano-sl-explorer-static = [ "x86_64-linux" ] ;
42
+ cardano-sl-explorer = [ "x86_64-linux" ] ;
42
43
cardano-sl-explorer-frontend = [ "x86_64-linux" ] ;
43
44
cardano-report-server-static = [ "x86_64-linux" ] ;
45
+ cardano-report-server = [ "x86_64-linux" ] ;
44
46
stack2nix = supportedSystems ;
45
47
purescript = supportedSystems ;
46
48
daedalus-bridge = supportedSystems ;
Original file line number Diff line number Diff line change 34
34
then { inherit relays confKey confFile ; }
35
35
else environments . ${ environment } ;
36
36
executables = {
37
- wallet = if useStackBinaries then "stack exec -- cardano-node" else "${ iohkPkgs . cardano-sl-wallet-new } /bin/cardano-node" ;
37
+ wallet = if useStackBinaries then "stack exec -- cardano-node" else "${ iohkPkgs . cardano-sl-wallet-new-static } /bin/cardano-node" ;
38
38
explorer = if useStackBinaries then "stack exec -- cardano-explorer" else "${ iohkPkgs . cardano-sl-explorer-static } /bin/cardano-explorer" ;
39
- x509gen = if useStackBinaries then "stack exec -- cardano-x509-certificates" else "${ iohkPkgs . cardano-sl-tools } /bin/cardano-x509-certificates" ;
39
+ x509gen = if useStackBinaries then "stack exec -- cardano-x509-certificates" else "${ iohkPkgs . cardano-sl-tools-static } /bin/cardano-x509-certificates" ;
40
40
} ;
41
41
ifWallet = localLib . optionalString ( executable == "wallet" ) ;
42
42
iohkPkgs = import ./../../../default.nix { inherit config system pkgs gitrev ; } ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ with localLib;
23
23
24
24
let
25
25
stackExec = optionalString useStackBinaries "stack exec -- " ;
26
- cardanoDeps = with iohkPkgs ; [ cardano-sl-tools cardano-sl-wallet-new cardano-sl-node-static ] ;
26
+ cardanoDeps = with iohkPkgs ; [ cardano-sl-tools-static cardano-sl-wallet-new-static cardano-sl-node-static ] ;
27
27
demoClusterDeps = with pkgs ; [ jq coreutils curl gnused openssl ] ;
28
28
allDeps = demoClusterDeps ++ ( optionals ( ! useStackBinaries ) cardanoDeps ) ;
29
29
walletConfig = {
You can’t perform that action at this time.
0 commit comments