File tree Expand file tree Collapse file tree 2 files changed +16
-15
lines changed
Expand file tree Collapse file tree 2 files changed +16
-15
lines changed Original file line number Diff line number Diff line change @@ -154,8 +154,8 @@ To run in dev mode add `-- --dev` flag to run command
154154##### Sydney
155155
156156``` bash
157- nix build .# ggxchain -node-sydney
158- nix run .# ggxchain-node- sydney --chain sydney
157+ nix build .# sydney -node
158+ nix run .# sydney-node
159159```
160160
161161To run in dev mode use
@@ -179,8 +179,8 @@ nix run .#prune-running
179179##### Brooklyn
180180
181181``` bash
182- nix build .# ggxchain -node-brooklyn
183- nix run .# ggxchain-node- brooklyn --chain brooklyn
182+ nix build .# brooklyn -node
183+ nix run .# brooklyn-node
184184```
185185
186186To run in dev mode use
Original file line number Diff line number Diff line change 189189 '' ;
190190 } ;
191191
192- common-native-release-attrs = common-attrs // rec {
193- runtime = "brooklyn" ;
194- cargoExtraArgs = "--package ${ pname } --no-default-features --features=${ runtime } " ;
195- pname = "ggxchain-node" ;
196- nativeBuildInputs = common-attrs . nativeBuildInputs ++ [ pkgs . git ] ; # parity does some git hacks in build.rs
197- } ;
192+ common-native-release-attrs = { runtime , version } :
193+ common-attrs // rec {
194+ inherit version ;
195+ cargoExtraArgs = "--package ${ pname } --no-default-features --features=${ runtime } " ;
196+ pname = "ggxchain-node" ;
197+ nativeBuildInputs = common-attrs . nativeBuildInputs ++ [ pkgs . git ] ; # parity does some git hacks in build.rs
198+ } ;
198199
199- common-native-sydney-attrs = common-native-release-attrs // rec {
200- runtime = "sydney" ;
201- version = "0.1.0 " ;
200+ common-native-sydney-attrs = common-native-release-attrs {
201+ runtime = "sydney" ;
202+ version = "0.1.1 " ;
202203 } ;
203204
204- common-native-brooklyn-attrs = common-native-release-attrs // rec {
205- runtime = "brooklyn" ;
205+ common-native-brooklyn-attrs = common-native-release-attrs {
206+ runtime = "brooklyn" ;
206207 version = "0.2.0" ;
207208 } ;
208209
You can’t perform that action at this time.
0 commit comments