-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
163 lines (153 loc) · 5.19 KB
/
flake.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
{
description = "A nix flake for hydra-auction-offchain.";
nixConfig = {
extra-experimental-features = [ "flakes" "nix-command" ];
bash-prompt = "\\[\\e[0m\\][\\[\\e[0;2m\\]nix-develop \\[\\e[0;1m\\]hydra-auction-offchain@\\[\\033[33m\\]$(git rev-parse --abbrev-ref HEAD) \\[\\e[0;32m\\]\\w\\[\\e[0m\\]]\\[\\e[0m\\]$ \\[\\e[0m\\]";
};
inputs = {
nixpkgs.follows = "ctl/nixpkgs";
cardano-node.follows = "ctl/cardano-node";
ctl.url = "github:Plutonomicon/cardano-transaction-lib/5da2df9c8b3958d417332d7ad6aea4cf5f1b13eb";
hydra.url = "github:input-output-hk/hydra/0.19.0";
hydra-auction-onchain.url = "github:mlabs-haskell/hydra-auction-onchain/dshuiski/delegate-groups";
};
outputs = { self, nixpkgs, ctl, hydra, hydra-auction-onchain, ... }@inputs:
let
supportedSystems = [ "x86_64-linux" ];
perSystem = nixpkgs.lib.genAttrs supportedSystems;
nixpkgsFor = system: import nixpkgs {
inherit system;
overlays = [
ctl.overlays.purescript
ctl.overlays.runtime
ctl.overlays.spago
(_: _: {
arion = (import ctl.inputs.nixpkgs-arion { inherit system; }).arion;
})
];
};
psProjectFor = system: pkgs:
pkgs.purescriptProject rec {
inherit pkgs;
projectName = "hydra-auction-offchain";
src = builtins.path {
path = ./.;
name = "${projectName}-src";
filter = path: ftype: !(pkgs.lib.hasSuffix ".md" path) && (builtins.baseNameOf path != "flake.nix");
};
packageJson = ./package.json;
packageLock = ./package-lock.json;
shell = {
withRuntime = true;
packageLockOnly = true;
shellHook = ''
mkdir -p scripts
cp -rf ${hydra-auction-onchain}/compiled/*.plutus scripts
for script in scripts/*.plutus; do
jq '. | {cborHex: .cborHex, description: .description, type: "PlutusScriptV2"}' "$script" \
> "$script.tmp"
mv -f "$script.tmp" "$script"
done
'';
packages = with pkgs; [
fd
hydra.packages.${system}.hydra-node
nixpkgs-fmt
nodePackages.prettier
nodePackages.purs-tidy
inputs.cardano-node.packages.${system}."preview/node"
inputs.cardano-node.packages.${system}."preprod/node"
];
};
};
in
{
apps = perSystem (system:
let
pkgs = nixpkgsFor system;
runtimeConfig = final: with final; {
network.name = "preprod";
};
in
{
ctl-runtime = pkgs.launchCtlRuntime runtimeConfig;
}
);
packages = perSystem (system:
let
pkgs = nixpkgsFor system;
project = psProjectFor system pkgs;
hydra-auction-offchain = project.buildPursProject {
strictComp = true;
censorCodes = [
"ImplicitImport"
"ImplicitQualifiedImport"
"ImplicitQualifiedImportReExport"
"UserDefinedWarning"
];
};
in
{
delegate-server = pkgs.writeShellApplication {
name = "delegate-server";
text = ''
TEMPD=$(mktemp -d)
cd "$TEMPD"
cp -r ${hydra-auction-offchain}/* .
ln -sfn ${project.nodeModules}/lib/node_modules node_modules
mkdir -p scripts && cp -r ${hydra-auction-onchain}/compiled/*.plutus scripts
node --enable-source-maps -e 'import("./output/DelegateServer.Main/index.js").then(m => m.main())' \
-- delegate-server "$@"
'';
};
}
);
devShells = perSystem (system:
let
pkgs = nixpkgsFor system;
in
{
default = (psProjectFor system pkgs).devShell;
}
);
checks = perSystem (system:
let
pkgs = nixpkgsFor system;
project = psProjectFor system pkgs;
builtProject = project.buildPursProject {
strictComp = true;
censorCodes = [
"ImplicitImport"
"ImplicitQualifiedImport"
"ImplicitQualifiedImportReExport"
"UserDefinedWarning"
];
};
in
{
hydra-auction-offchain-tests = project.runLocalTestnetTest {
inherit builtProject;
buildInputs = [ hydra.packages.${system}.hydra-node ];
name = "hydra-auction-offchain-tests";
testMain = "Test.Main";
};
formatting-check = pkgs.runCommand "formatting-check"
{
nativeBuildInputs = with pkgs; [
fd
easy-ps.purs-tidy
nixpkgs-fmt
nodePackages.prettier
];
}
''
cd ${self}
purs-tidy check $(fd -epurs)
nixpkgs-fmt --check $(fd -enix --exclude='spago*')
prettier -c $(fd -ejs)
touch $out
'';
}
);
};
}