-
Notifications
You must be signed in to change notification settings - Fork 3
/
sdk.nix
65 lines (65 loc) · 2.24 KB
/
sdk.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
{ pkgs, src }:
with pkgs;
let
patchedSrc = pkgs.stdenv.mkDerivation {
name = "sdk-src";
inherit src;
installPhase = ''
cp -r $src $out
chmod -R +rw $out
cd $out
patch -p1 < ${./nix/sdk.patch}
'';
};
stdenv = llvmPackages.libcxxStdenv;
linker = callPackage ./nix/static-linker.nix { inherit stdenv; };
buildInputs = [ openssl-static ] ++ lib.optionals stdenv.isDarwin
(with darwin.apple_sdk_11_0.frameworks; [
DiskArbitration
Security
Foundation
]);
ic_btc_canister = builtins.fetchurl
"https://github.com/dfinity/bitcoin-canister/releases/latest/download/ic-btc-canister.wasm.gz";
dfx = (rustPlatform.buildRustPackage {
name = "dfx";
src = patchedSrc;
inherit buildInputs;
cargoBuildFlags = [ "-p" "dfx" "-p" "icx-asset" ];
nativeBuildInputs = [ perl pkg-config cmake binaryen python3 ];
preConfigure = ''
export DFX_VERSION=$(cat src/dfx/Cargo.toml |grep version|head -n1|sed -e 's/^.*"\(.*\)"/\1/')
export DFX_CONFIG_ROOT="$PWD"
export DFX_ASSETS="$PWD/dfx_assets"
mkdir -p "$DFX_ASSETS"
touch "$DFX_ASSETS/binary_cache.tgz"
tar -czf "$DFX_ASSETS"/assetstorage_canister.tgz -C $src/src/distributed assetstorage.did assetstorage.wasm.gz
tar -czf "$DFX_ASSETS"/wallet_canister.tgz -C $src/src/distributed wallet.did wallet.wasm.gz
tar -czf "$DFX_ASSETS"/ui_canister.tgz -C $src/src/distributed ui.did ui.wasm
DIR=`mktemp -d`
cp "${ic_btc_canister}" "$DIR/ic-btc-canister.wasm.gz"
tar -czf "$DFX_ASSETS"/btc_canister.tgz -C $DIR ic-btc-canister.wasm.gz
rm -rf "$DIR"
'';
postInstall = ''
mkdir -p $out/share/dfx-canisters/
cp $src/src/distributed/*.{wasm,did} $out/share/dfx-canisters/
'';
RUSTFLAGS = [ "-Clinker=${linker}" "-Lnative=${libcxx}/lib" ]
++ lib.optionals stdenv.isDarwin [
"-Lnative=${libiconv-static.out}/lib"
"-lstatic=iconv"
];
doCheck = false;
# Placeholder, to allow a custom importCargoLock below
cargoSha256 = lib.fakeHash;
}).overrideAttrs (_: {
cargoDeps = rustPlatform.importCargoLock {
allowBuiltinFetchGit = true;
lockFile = "${patchedSrc}/Cargo.lock";
};
});
in {
inherit dfx;
shell = dfx;
}