2021-03-25 22:25:53 +00:00
|
|
|
{ fullDeps ? false
|
|
|
|
, hardwareTest ? false
|
|
|
|
}:
|
|
|
|
|
2020-10-12 20:03:18 +00:00
|
|
|
let
|
2022-02-11 11:05:20 +00:00
|
|
|
# the last commit from master as of 2022-02-08
|
2021-05-20 10:59:08 +00:00
|
|
|
rustOverlay = import (builtins.fetchTarball {
|
2022-02-11 11:05:20 +00:00
|
|
|
url = "https://github.com/oxalica/rust-overlay/archive/2eae19e246433530998cbf239d5505b7b87bc854.tar.gz";
|
|
|
|
sha256 = "0panx24sqcvx52wza02zsxmpkhg6xld7hklrv7dybc59akqm2ira";
|
2021-03-23 12:14:33 +00:00
|
|
|
});
|
2022-02-11 11:05:20 +00:00
|
|
|
# the last successful build of nixpkgs-unstable as of 2022-02-10
|
2021-03-23 12:14:33 +00:00
|
|
|
nixpkgs = import (builtins.fetchTarball {
|
2022-02-11 11:05:20 +00:00
|
|
|
url = "https://github.com/NixOS/nixpkgs/archive/1882c6b7368fd284ad01b0a5b5601ef136321292.tar.gz";
|
|
|
|
sha256 = "0zg7ak2mcmwzi2kg29g4v9fvbvs0viykjsg2pwaphm1fi13s7s0i";
|
2021-05-20 10:59:08 +00:00
|
|
|
}) { overlays = [ rustOverlay ]; };
|
2021-11-19 14:05:04 +00:00
|
|
|
# commit before python36 was removed
|
|
|
|
python36nixpkgs = import (builtins.fetchTarball {
|
|
|
|
url = "https://github.com/NixOS/nixpkgs/archive/b9126f77f553974c90ab65520eff6655415fc5f4.tar.gz";
|
|
|
|
sha256 = "02s3qkb6kz3ndyx7rfndjbvp4vlwiqc42fxypn3g6jnc0v5jyz95";
|
|
|
|
}) { };
|
2021-03-23 12:14:33 +00:00
|
|
|
moneroTests = nixpkgs.fetchurl {
|
2022-04-07 12:37:33 +00:00
|
|
|
url = "https://github.com/ph4r05/monero/releases/download/v0.17.3.0-dev-tests/trezor_tests";
|
|
|
|
sha256 = "sha256-tTQTe/Yk6oURq7GDOEotJ7Y2UpCgyuU5odjEHNTMrmE=";
|
2020-10-12 20:03:18 +00:00
|
|
|
};
|
2021-03-23 12:14:33 +00:00
|
|
|
moneroTestsPatched = nixpkgs.runCommandCC "monero_trezor_tests" {} ''
|
2020-10-12 20:03:18 +00:00
|
|
|
cp ${moneroTests} $out
|
|
|
|
chmod +wx $out
|
2021-03-23 12:14:33 +00:00
|
|
|
${nixpkgs.patchelf}/bin/patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$out"
|
2020-10-12 20:03:18 +00:00
|
|
|
chmod -w $out
|
|
|
|
'';
|
2022-03-08 11:32:05 +00:00
|
|
|
# NOTE: don't forget to update Minimum Supported Rust Version in docs/core/build/emulator.md
|
2022-03-04 09:59:57 +00:00
|
|
|
rustProfiles = nixpkgs.rust-bin.stable."1.58.1";
|
|
|
|
rustStable = rustProfiles.minimal.override {
|
2021-03-23 12:14:33 +00:00
|
|
|
targets = [
|
2021-05-20 10:59:08 +00:00
|
|
|
"thumbv7em-none-eabihf" # TT
|
|
|
|
"thumbv7m-none-eabi" # T1
|
2021-03-23 12:14:33 +00:00
|
|
|
];
|
2021-09-08 11:50:56 +00:00
|
|
|
# we use rustfmt from nixpkgs because it's built with the nighly flag needed for wrap_comments
|
2021-09-22 16:15:40 +00:00
|
|
|
# to use official binary, remove rustfmt from buildInputs and add it to extensions:
|
|
|
|
extensions = [ "clippy" ];
|
2021-03-23 12:14:33 +00:00
|
|
|
};
|
2022-02-11 11:05:20 +00:00
|
|
|
llvmPackages = nixpkgs.llvmPackages_13;
|
2022-01-05 16:31:31 +00:00
|
|
|
# see pyright/README.md for update procedure
|
|
|
|
pyright = nixpkgs.callPackage ./pyright {};
|
2022-01-20 15:05:06 +00:00
|
|
|
# HWI tests need https://github.com/bitcoin/bitcoin/pull/22558
|
|
|
|
# remove this once nixpkgs version contains this patch
|
|
|
|
bitcoind = (nixpkgs.bitcoind.overrideAttrs (attrs: {
|
|
|
|
version = attrs.version + "-taproot-psbt";
|
|
|
|
src = nixpkgs.fetchFromGitHub {
|
|
|
|
owner = "achow101";
|
|
|
|
repo = "bitcoin";
|
2022-03-03 11:59:25 +00:00
|
|
|
rev = "b704884935766748cf533577c1babacfb6d4b5a5"; # taproot-psbt
|
|
|
|
sha256 = "sha256-gz/knimKY1pkpsp1YmYHPMCbeiSxKGSOGJOSEgFbptE=";
|
2022-01-20 15:05:06 +00:00
|
|
|
};
|
|
|
|
}));
|
2020-10-12 20:03:18 +00:00
|
|
|
in
|
2021-03-23 12:14:33 +00:00
|
|
|
with nixpkgs;
|
2021-12-03 11:49:08 +00:00
|
|
|
stdenvNoCC.mkDerivation ({
|
2020-07-03 10:32:55 +00:00
|
|
|
name = "trezor-firmware-env";
|
2021-01-19 16:01:47 +00:00
|
|
|
buildInputs = lib.optionals fullDeps [
|
2022-01-20 15:05:06 +00:00
|
|
|
bitcoind
|
2020-10-12 20:03:18 +00:00
|
|
|
# install other python versions for tox testing
|
|
|
|
# NOTE: running e.g. "python3" in the shell runs the first version in the following list,
|
2022-02-11 11:05:20 +00:00
|
|
|
# and poetry uses the default version (currently 3.9)
|
2020-10-12 20:03:18 +00:00
|
|
|
python39
|
2022-02-11 11:05:20 +00:00
|
|
|
python310
|
|
|
|
python38
|
2020-10-12 20:03:18 +00:00
|
|
|
python37
|
2021-11-19 14:05:04 +00:00
|
|
|
python36nixpkgs.python36
|
2020-10-12 20:03:18 +00:00
|
|
|
] ++ [
|
2020-05-03 17:00:57 +00:00
|
|
|
SDL2
|
|
|
|
SDL2_image
|
|
|
|
autoflake
|
2022-03-28 22:08:48 +00:00
|
|
|
autoPatchelfHook
|
2020-07-03 10:44:13 +00:00
|
|
|
bash
|
2020-05-03 17:00:57 +00:00
|
|
|
check
|
2021-12-03 16:09:00 +00:00
|
|
|
curl # for connect tests
|
2020-11-11 13:43:09 +00:00
|
|
|
editorconfig-checker
|
2021-12-05 23:21:42 +00:00
|
|
|
gcc-arm-embedded
|
2020-05-03 17:00:57 +00:00
|
|
|
git
|
2020-07-03 10:32:55 +00:00
|
|
|
gitAndTools.git-subrepo
|
2020-05-03 17:00:57 +00:00
|
|
|
gnumake
|
|
|
|
graphviz
|
|
|
|
libffi
|
|
|
|
libjpeg
|
|
|
|
libusb1
|
2021-12-03 15:28:16 +00:00
|
|
|
llvmPackages.clang
|
2020-07-03 10:44:13 +00:00
|
|
|
openssl
|
2020-05-03 17:00:57 +00:00
|
|
|
pkgconfig
|
2020-08-08 16:24:22 +00:00
|
|
|
poetry
|
2020-05-03 17:00:57 +00:00
|
|
|
protobuf3_6
|
2021-11-18 14:01:35 +00:00
|
|
|
pyright
|
2021-03-23 12:14:33 +00:00
|
|
|
rustfmt
|
2021-05-20 10:59:08 +00:00
|
|
|
rustStable
|
2020-07-03 12:48:55 +00:00
|
|
|
wget
|
2020-05-03 17:00:57 +00:00
|
|
|
zlib
|
2021-06-07 10:33:02 +00:00
|
|
|
moreutils
|
2021-01-19 16:01:47 +00:00
|
|
|
] ++ lib.optionals (!stdenv.isDarwin) [
|
2020-07-03 12:48:55 +00:00
|
|
|
procps
|
2020-12-27 20:28:52 +00:00
|
|
|
valgrind
|
2021-01-19 16:01:47 +00:00
|
|
|
] ++ lib.optionals (stdenv.isDarwin) [
|
2020-07-03 10:32:55 +00:00
|
|
|
darwin.apple_sdk.frameworks.CoreAudio
|
|
|
|
darwin.apple_sdk.frameworks.AudioToolbox
|
|
|
|
darwin.apple_sdk.frameworks.ForceFeedback
|
|
|
|
darwin.apple_sdk.frameworks.CoreVideo
|
|
|
|
darwin.apple_sdk.frameworks.Cocoa
|
|
|
|
darwin.apple_sdk.frameworks.Carbon
|
|
|
|
darwin.apple_sdk.frameworks.IOKit
|
|
|
|
darwin.apple_sdk.frameworks.QuartzCore
|
|
|
|
darwin.apple_sdk.frameworks.Metal
|
|
|
|
darwin.libobjc
|
|
|
|
libiconv
|
2021-03-25 22:25:53 +00:00
|
|
|
] ++ lib.optionals hardwareTest [
|
2021-03-26 14:42:24 +00:00
|
|
|
uhubctl
|
2021-03-25 22:25:53 +00:00
|
|
|
ffmpeg
|
|
|
|
dejavu_fonts
|
2020-05-03 17:00:57 +00:00
|
|
|
];
|
|
|
|
LD_LIBRARY_PATH = "${libffi}/lib:${libjpeg.out}/lib:${libusb1}/lib:${libressl.out}/lib";
|
2022-03-08 21:27:35 +00:00
|
|
|
DYLD_LIBRARY_PATH = "${libffi}/lib:${libjpeg.out}/lib:${libusb1}/lib:${libressl.out}/lib";
|
2020-05-03 17:00:57 +00:00
|
|
|
NIX_ENFORCE_PURITY = 0;
|
2020-09-30 07:28:20 +00:00
|
|
|
|
|
|
|
# Fix bdist-wheel problem by setting source date epoch to a more recent date
|
|
|
|
SOURCE_DATE_EPOCH = 1600000000;
|
2020-10-12 20:03:18 +00:00
|
|
|
|
2021-03-23 12:14:33 +00:00
|
|
|
# Used by rust bindgen
|
2021-07-09 09:47:57 +00:00
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
2021-11-06 22:13:56 +00:00
|
|
|
|
|
|
|
# don't try to use stack protector for Apple Silicon (emulator) binaries
|
|
|
|
# it's broken at the moment
|
|
|
|
hardeningDisable = lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [ "stackprotector" ];
|
|
|
|
|
2022-03-04 09:59:57 +00:00
|
|
|
# Enabling rust-analyzer extension in VSCode
|
|
|
|
RUST_SRC_PATH = "${rustProfiles.rust-src}/lib/rustlib/src/rust/library";
|
|
|
|
|
2021-01-19 16:01:47 +00:00
|
|
|
} // (lib.optionalAttrs fullDeps) {
|
2020-10-12 20:03:18 +00:00
|
|
|
TREZOR_MONERO_TESTS_PATH = moneroTestsPatched;
|
|
|
|
})
|