mirror of
https://github.com/urbit/shrub.git
synced 2024-11-29 06:45:42 +03:00
0bdced981e
Arvo testnets typically use Ropsten's deploy of the Azimuth contract instead of mainnet's. This commit adds an 'arvo-ropsten' derivation for Arvo as specialised to Ropsten. In addition to using a different Azimuth address in %zuse, this also configures %ames and :acme appropriately for running an alternate network on Ropsten. %ames has its protocol version incremented, and :acme uses the Let's Encrypt staging API. Included here are derivations for creating brass and ivory pills using arvo-ropsten, to boot.
9 lines
193 B
Nix
9 lines
193 B
Nix
{ pkgs }:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "arvo-ropsten";
|
|
buildInputs = [ pkgs.bc ];
|
|
builder = ./builder.sh;
|
|
src = pkgs.buildRustCrateHelpers.exclude [ ".git" ] ../../../pkg/arvo;
|
|
}
|