forked from IntersectMBO/plutus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.nix
107 lines (92 loc) · 4.33 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
########################################################################
# default.nix -- The top-level nix build file for Plutus.
#
# This file defines various attributes that are used for building and
# developing Plutus.
#
########################################################################
{ system ? builtins.currentSystem
, crossSystem ? null
, config ? { allowUnfreePredicate = (import ./nix/lib/unfree.nix).unfreePredicate; }
# Overrides for niv
, sourcesOverride ? { }
, packages ? import ./nix { inherit system crossSystem config sourcesOverride rev checkMaterialization enableHaskellProfiling; }
# An explicit git rev to use, passed when we are in Hydra
, rev ? null
# Whether to check that the pinned shas for haskell.nix are correct. We want this to be
# false, generally, since it does more work, but we set it to true in the CI
, checkMaterialization ? false
# Whether to build our Haskell packages (and their dependencies) with profiling enabled.
, enableHaskellProfiling ? false
}:
let
inherit (packages) pkgs plutus sources;
inherit (pkgs) lib haskell-nix;
inherit (plutus) haskell iohkNix agdaPackages;
inherit (plutus) easyPS sphinxcontrib-haddock;
in
rec {
inherit pkgs plutus;
inherit (plutus) web-ghc;
inherit (haskell.packages.plutus-pab.components.exes)
plutus-game
plutus-currency
plutus-atomic-swap
plutus-pay-to-wallet;
inherit (haskell.packages.marlowe.components.exes)
marlowe-app
marlowe-companion-app
marlowe-follow-app;
webCommon = pkgs.callPackage ./web-common { inherit (plutus.lib) gitignore-nix; };
webCommonPlutus = pkgs.callPackage ./web-common-plutus { inherit (plutus.lib) gitignore-nix; };
webCommonMarlowe = pkgs.callPackage ./web-common-marlowe { inherit (plutus.lib) gitignore-nix; };
webCommonPlayground = pkgs.callPackage ./web-common-playground { inherit (plutus.lib) gitignore-nix; };
plutus-playground = pkgs.recurseIntoAttrs rec {
haddock = plutus.plutus-haddock-combined;
inherit (pkgs.callPackage ./plutus-playground-client {
inherit (plutus.lib) buildPursPackage buildNodeModules filterNpm gitignore-nix;
inherit haskell webCommon webCommonPlutus webCommonPlayground;
}) client server generate-purescript start-backend;
};
marlowe-playground = pkgs.recurseIntoAttrs rec {
inherit (pkgs.callPackage ./marlowe-playground-client {
inherit (plutus.lib) buildPursPackage buildNodeModules filterNpm gitignore-nix;
inherit haskell webCommon webCommonMarlowe webCommonPlayground;
}) client server generate-purescript start-backend;
};
marlowe-dashboard = pkgs.recurseIntoAttrs rec {
inherit (pkgs.callPackage ./marlowe-dashboard-client {
inherit plutus-pab marlowe-app marlowe-companion-app marlowe-follow-app;
inherit (plutus.lib) buildPursPackage buildNodeModules filterNpm gitignore-nix;
inherit webCommon webCommonMarlowe;
}) client server-invoker generated-purescript generate-purescript contractsJSON install-marlowe-contracts;
};
marlowe-marketplace = pkgs.recurseIntoAttrs rec {
inherit (pkgs.callPackage ./marlowe-marketplace-client {
inherit (plutus.lib) buildPursPackage buildNodeModules filterNpm gitignore-nix;
inherit webCommon webCommonMarlowe;
}) client;
};
plutus-pab = pkgs.recurseIntoAttrs (pkgs.callPackage ./plutus-pab-client {
inherit (plutus.lib) buildPursPackage buildNodeModules gitignore-nix filterNpm;
inherit haskell webCommon webCommonPlutus;
});
tests = import ./nix/tests/default.nix {
inherit pkgs iohkNix docs;
inherit (plutus.lib) gitignore-nix;
inherit (plutus) fixStylishHaskell fixPurty fixPngOptimization;
inherit (pkgs) terraform;
inherit plutus-playground marlowe-playground marlowe-dashboard web-ghc plutus-pab
marlowe-app marlowe-companion-app marlowe-follow-app;
src = ./.;
};
docs = import ./nix/docs.nix { inherit pkgs plutus; };
deployment = pkgs.recurseIntoAttrs (pkgs.callPackage ./deployment/morph {
plutus = {
inherit plutus-pab marlowe-app marlowe-companion-app marlowe-follow-app
marlowe-dashboard marlowe-playground plutus-playground web-ghc docs;
};
});
# This builds a vscode devcontainer that can be used with the plutus-starter project (or probably the plutus project itself).
devcontainer = import ./nix/devcontainer/plutus-devcontainer.nix { inherit pkgs plutus; };
}