mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-20 21:31:32 +03:00
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
|
{ lib, stdenvNoCC, bc }:
|
||
|
|
||
|
stdenvNoCC.mkDerivation {
|
||
|
name = "sources";
|
||
|
src = lib.cleanSource ../../../pkg;
|
||
|
|
||
|
buildInputs = [ bc ];
|
||
|
|
||
|
outputs = [ "out" "ropsten" ];
|
||
|
|
||
|
phases = [ "mainnetPhase" "ropstenPhase" ];
|
||
|
|
||
|
mainnetPhase = ''
|
||
|
cp -r $src $out
|
||
|
chmod -R u+w $out
|
||
|
'';
|
||
|
|
||
|
ropstenPhase = ''
|
||
|
cp -r $src tmp
|
||
|
chmod -R u+w tmp
|
||
|
|
||
|
ZUSE=tmp/arvo/sys/zuse.hoon
|
||
|
AMES=tmp/arvo/sys/vane/ames.hoon
|
||
|
ACME=tmp/arvo/app/acme.hoon
|
||
|
|
||
|
# Replace the mainnet azimuth contract with the ropsten contract
|
||
|
sed --in-place \
|
||
|
's/\(\+\+ contracts \)mainnet\-contracts/\1ropsten-contracts/' \
|
||
|
$ZUSE
|
||
|
|
||
|
# Increment the %ames protocol version
|
||
|
sed -r --in-place \
|
||
|
's_^(=/ protocol\-version=\?\(.*\) %)([0-7])_echo "\1$(echo "(\2+1) % 8" | bc)"_e' \
|
||
|
$AMES
|
||
|
|
||
|
# Use the staging API in :acme
|
||
|
sed --in-place \
|
||
|
's_https://acme-v02.api.letsencrypt.org/directory_https://acme-staging-v02.api.letsencrypt.org/directory_' \
|
||
|
$ACME
|
||
|
|
||
|
cp -r tmp $ropsten
|
||
|
chmod -R u+w $ropsten
|
||
|
'';
|
||
|
|
||
|
preferLocalBuild = true;
|
||
|
}
|