2021-03-25 22:25:53 +00:00
|
|
|
{ fullDeps ? false
|
|
|
|
, hardwareTest ? false
|
2023-04-17 18:08:37 +00:00
|
|
|
, devTools ? false
|
2021-03-25 22:25:53 +00:00
|
|
|
}:
|
|
|
|
|
2020-10-12 20:03:18 +00:00
|
|
|
let
|
2023-03-17 20:26:03 +00:00
|
|
|
# the last commit from master as of 2023-04-14
|
2021-05-20 10:59:08 +00:00
|
|
|
rustOverlay = import (builtins.fetchTarball {
|
2023-03-17 20:26:03 +00:00
|
|
|
url = "https://github.com/oxalica/rust-overlay/archive/db7bf4a2dd295adeeaa809d36387098926a15487.tar.gz";
|
|
|
|
sha256 = "0gk6kag09w8lyn9was8dpjgslxw5p81bx04379m9v6ky09kw482d";
|
2021-03-23 12:14:33 +00:00
|
|
|
});
|
2023-04-17 18:08:37 +00:00
|
|
|
# define this variable and devTools if you want nrf{util,connect}
|
|
|
|
acceptJlink = builtins.getEnv "TREZOR_FIRMWARE_ACCEPT_JLINK_LICENSE" == "yes";
|
2023-03-17 20:26:03 +00:00
|
|
|
# the last successful build of nixpkgs-unstable as of 2023-04-14
|
2021-03-23 12:14:33 +00:00
|
|
|
nixpkgs = import (builtins.fetchTarball {
|
2023-03-17 20:26:03 +00:00
|
|
|
url = "https://github.com/NixOS/nixpkgs/archive/c58e6fbf258df1572b535ac1868ec42faf7675dd.tar.gz";
|
|
|
|
sha256 = "18pna0yinvdprhhcmhyanlgrmgf81nwpc0j2z9fy9mc8cqkx3937";
|
2023-04-17 18:08:37 +00:00
|
|
|
}) {
|
|
|
|
config = {
|
|
|
|
allowUnfree = acceptJlink;
|
|
|
|
segger-jlink.acceptLicense = acceptJlink;
|
|
|
|
};
|
|
|
|
overlays = [ rustOverlay ];
|
|
|
|
};
|
2021-11-19 14:05:04 +00:00
|
|
|
# commit before python36 was removed
|
2023-03-17 20:26:03 +00:00
|
|
|
oldPythonNixpkgs = import (builtins.fetchTarball {
|
2021-11-19 14:05:04 +00:00
|
|
|
url = "https://github.com/NixOS/nixpkgs/archive/b9126f77f553974c90ab65520eff6655415fc5f4.tar.gz";
|
|
|
|
sha256 = "02s3qkb6kz3ndyx7rfndjbvp4vlwiqc42fxypn3g6jnc0v5jyz95";
|
|
|
|
}) { };
|
2021-03-23 12:14:33 +00:00
|
|
|
moneroTests = nixpkgs.fetchurl {
|
2023-03-02 15:55:51 +00:00
|
|
|
url = "https://github.com/ph4r05/monero/releases/download/v0.18.1.1-dev-tests-u18.04-02/trezor_tests";
|
|
|
|
sha256 = "81424cfc3965abdc24de573274bf631337b52fd25cefc895513214c613fe05c9";
|
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
|
|
|
|
'';
|
2023-03-17 20:26:03 +00:00
|
|
|
# do not expose rust's gcc: https://github.com/oxalica/rust-overlay/issues/70
|
|
|
|
# Create a wrapper that only exposes $pkg/bin. This prevents pulling in
|
|
|
|
# development deps, packages to a nix-shell. This is especially important
|
|
|
|
# when packages are combined from different nixpkgs versions.
|
|
|
|
mkBinOnlyWrapper = pkg:
|
|
|
|
nixpkgs.runCommand "${pkg.pname}-${pkg.version}-bin" { inherit (pkg) meta; } ''
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
for bin in "${nixpkgs.lib.getBin pkg}/bin/"*; do
|
|
|
|
ln -s "$bin" "$out/bin/"
|
|
|
|
done
|
|
|
|
'';
|
2022-03-08 11:32:05 +00:00
|
|
|
# NOTE: don't forget to update Minimum Supported Rust Version in docs/core/build/emulator.md
|
2023-03-17 20:26:03 +00:00
|
|
|
rustProfiles = nixpkgs.rust-bin.nightly."2023-04-14";
|
2022-08-18 11:16:53 +00:00
|
|
|
rustNightly = 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:
|
2022-08-18 11:24:46 +00:00
|
|
|
extensions = [ "rust-src" "clippy" "rustfmt" ];
|
2021-03-23 12:14:33 +00:00
|
|
|
};
|
2023-09-29 13:28:13 +00:00
|
|
|
openocd-stm = (nixpkgs.openocd.overrideAttrs (oldAttrs: {
|
|
|
|
src = nixpkgs.fetchFromGitHub {
|
|
|
|
owner = "STMicroelectronics";
|
|
|
|
repo = "OpenOCD";
|
|
|
|
rev = "openocd-cubeide-v1.12.0";
|
|
|
|
sha256 = "7REQi9pcT6pn8yiAMpQpRQ+0ouMQelcciMAHyUonkVA=";
|
|
|
|
};
|
|
|
|
version = "stm-cubeide-v1.12.0";
|
|
|
|
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ nixpkgs.autoreconfHook ];
|
|
|
|
|
|
|
|
# following two lines can be removed after bumping nixpkgs to newer than c58e6fbf258df1572b535ac1868ec42faf7675dd
|
|
|
|
buildInputs = oldAttrs.buildInputs ++ [ nixpkgs.jimtcl nixpkgs.libjaylink ];
|
|
|
|
configureFlags = oldAttrs.configureFlags ++ [ "--disable-internal-jimtcl" "--disable-internal-libjaylink" ];
|
|
|
|
}));
|
2023-04-26 13:37:16 +00:00
|
|
|
llvmPackages = nixpkgs.llvmPackages_14;
|
2022-01-05 16:31:31 +00:00
|
|
|
# see pyright/README.md for update procedure
|
|
|
|
pyright = nixpkgs.callPackage ./pyright {};
|
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,
|
2023-03-17 20:26:03 +00:00
|
|
|
# and poetry uses the default version (currently 3.10)
|
2023-10-10 13:44:27 +00:00
|
|
|
python311
|
2022-02-11 11:05:20 +00:00
|
|
|
python310
|
2023-03-17 20:26:03 +00:00
|
|
|
python39
|
2022-02-11 11:05:20 +00:00
|
|
|
python38
|
2023-03-17 20:26:03 +00:00
|
|
|
oldPythonNixpkgs.python37
|
|
|
|
oldPythonNixpkgs.python36
|
2020-10-12 20:03:18 +00:00
|
|
|
] ++ [
|
2020-05-03 17:00:57 +00:00
|
|
|
SDL2
|
|
|
|
SDL2_image
|
2020-07-03 10:44:13 +00:00
|
|
|
bash
|
2022-10-05 08:28:06 +00:00
|
|
|
bloaty # for binsize
|
2020-05-03 17:00:57 +00:00
|
|
|
check
|
WIP - firmware translations
WIP - refactor and extend font generation for non-ascii characters
WIP - add czech characters mapping between UTF8 value and index
WIP - regenerate font files with czech characters
WIP - shorten czech button text, it was causing SHUTDOWN for some reason
WIP - support UTF8 characters in fonts.c
WIP - account for translation in tests
WIP - small fixes
WIP - fix last test
WIP - support UTF8 also in Rust font operations
WIP - add a script to find non-translated english strings in micropython code
WIP - add a validator script for checking missing micropython translations
WIP - translate remaining altcoins and other apps in core (fido, sdcard, TT layouts, ...)
WIP - generate czech glyphs for TT fonts
WIP - modify gen_font.py to account for negative bearing czech characters
WIP - extend translation validation scripts, move them into core/tools
WIP - translate TT layouts in Rust
WIP - fix tests
WIP - fix inverse coloring of nonprintable glyph
WIP - add build and test pipelines for Czech language
WIP - merge both JSON files together
WIP - run new isort
WIP - unify all the translation in Rust, expose to micropython
TEMP - leave en_merged.json file, so it is accessible by translators with old link
WIP - fixes
WIP - add french characters and translation via Google Translator
WIP - skip rustfmt in mako-created files
WIP - revert all the font height changes causing false-positive UI diff
WIP - fixes after rebase
WIP - fix broken translations
WIP - revert some wording changes causing UI diff
WIP - improve validation and translate scripts, translate missing strings
WIP - sort all keys alphabetically
WIP - remove any usage of translation in bootloader
WIP - add newline at the end of JSON file
WIP - fix bitcoin-only strings check
WIP - fix python support check
WIP - add some missing translations
WIP - fix SD card device test
WIP - fix pystyle
WIP - fix rust unittests
WIP - fix click tests
WIP - flag errors in french translations
WIP - add script transferring translations data into a byte blob
WIP - regenerate fr.rs
WIP - store and read language translations from flash
WIP - storing language name in storage
WIP - sending language_data in apply_settings protobuf message
WIP - separate protobuf message for translations, fixes
WIP - set up translations area for TT as well
WIP - get rid of TREZOR_LANG env variable during build
WIP - make the firmware buildable for TT
WIP - add basic device tests
WIP - set language for tests
WIP - counting with language when writing fixtures
WIP - add todos
WIP - fix CI
WIP - unify translations, make titles CAPITAL
WIP - translate missing english
WIP - skip translations messages for T1
WIP - not changing tests names for english
WIP - fix flake8
WIP - no test language setting for T1
WIP - clippy lint about complex data type
WIP - fix some english UI diff for TR
WIP - fix cstyle
WIP - minimize the usage of #[cfg(feature = "micropython")] outside translations module
WIP - minimize TT's UI diff
WIP - fix ruststyle
WIP - fix TR build
WIP - advanced Shamir text change
WIP - storing the language name as the first item in the translation data
WIP - modify and extend tests after storing language name
WIP - modify checklist sentence
WIP - add TEST_LANG into Makefile for all the emu tests
WIP - default arguments
WIP - reimplement default arguments
remove unneeded pub from get_info function
WIP - Rust handling of object attributes lookups from upy - thanks Matejcik!
WIP - generate mock interface for attribute-based translations lookups
WIP - change function calls to object attributes
WIP - symbolic link for unix/translations.c
WIP - fix and improve the reading of translations - thanks Matejcik!
WIP - add support for multiple languages in removing missing tests
WIP - fix multiple-accounts warning in tests
WIP - fix encoding of newlines in translations
WIP - fix czech tutorial text
WIP - fix czech click tests
WIP - do not translate wire error messages
WIP - add language options to click tests as well
WIP - setup czech device tests in CI
WIP - setup czech click tests in CI
WIP - record czech device tests for TR
WIP - record czech click tests for TR
WIP - record czech device tests for TT
WIP - record czech click tests for TT
WIP - pystyle
WIP - cstyle
WIP - fix Rust micropython import dependency
WIP - fix czech recordings
WIP - support french translations in tests
WIP - shorten some french words to fix the tests
WIP - fix micropython cfg compilation
WIP - record french click tests for TR
WIP - record french device tests for TR
WIP - record french device tests for TT
WIP - record french click tests for TT
WIP - fix french translations - shorten them
WIP - translate missing french words
WIP - fix click tests
WIP - add french tests into CI
WIP - pystyle
WIP - allow for czech/french tests in update script
WIP - update czech fixtures
WIP - update french fixtures
WIP - ruststyle
WIP - disallow MPU to run it on hardware
WIP - cstyle
WIP - change translations delimiter from * to \x00
WIP - change translations protobufs
WIP - remove language handling from storage
WIP - add header into JSON files
WIP - count with header in translations blob
WIP - yml style fixes
WIP - fix proto gen
WIP - verify version and data hash
WIP - fix loading test translations
feat(core): allow access to translations area in firmware
[no changelog]
WIP - fixes after rebase
WIP - increase the TT's translations area to 3 sectors
WIP - dynamically read the maximum translations size
WIP - record non-english tests from CI
WIP - loading font data from translations blob
WIP - bump translations version
WIP - include czech and french glyph data
WIP - whitelist another negative-bearing glyph
WIP - remove czech/french glyphs from common font files
WIP - fix language tests
WIP - specific fonts for specific models
WIP - revert the non-ascii font hardcoding
WIP - include missing BIG font into nonprintable logic
WIP - minor Rust code improvements
WIP - include newlines at the end of json files
WIP - move glyph Rust function to librust_fonts.h
WIP - add all fonts into translations file
WIP - move fonts into its own dir
WIP - reflect separate dir for fonts
WIP - not putting translations trezorhal into bootloader
WIP - write and read multiple fonts into translations data
WIP - silence pyright issue/notissue
WIP - delete no more used translations/*.py imports
WIP - fix bootloader builds by introducing translations feature and TRANSLATIONS flag
WIP - fix TT's bootloader Rust build
WIP - fix tests in non-english languages
WIP - not search for UTF-8 when there are no translations data
WIP - add colons to strings where missing
WIP - fix language loading in tests
WIP - fix signmessage input flow to work in all languages
WIP - create offset table for translation strings
WIP - code improvements
WIP - record foreign language fixtures + sync with main in english
WIP - do alignment check before reading u16 data
WIP - allocate blob in RAM for translations data
WIP - add TODO for blob generation
WIP - record non-english device tests
WIP - use bytes.align_to instead of messing with pointers
WIP - fixtures
WIP - remove unused import
WIP - add order.py
WIP - add order.json
WIP - take order.json into account in creating general.rs
WIP - take order.json into account in generating the blob
WIP - style
WIP - sort the language files
WIP - remove unused file
WIP - code improvements
WIP - add TODO for homescreen notification
WIP - translate plural forms
WIP - translate time intervals
WIP - sign translations with dev keys, validate signatures, improve robustness
WIP - improve tests for translations
WIP - add `trezorctl utils sign-translations` for production signing of the blob
WIP - pyright fix
WIP - changing TR progress loader offset - it was colliding with title
WIP - show indeterminate loader when loading translations data
WIP - record new and updated language tests
WIP - show the change language title/prompt in the target language
WIP - sort keys
WIP - add crowdin-cli into shell.nix
WIP - add crowdin sync script
2023-08-11 15:57:32 +00:00
|
|
|
crowdin-cli # for translations
|
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
|
2023-03-17 20:26:03 +00:00
|
|
|
protobuf3_19
|
2021-11-18 14:01:35 +00:00
|
|
|
pyright
|
2023-03-17 20:26:03 +00:00
|
|
|
(mkBinOnlyWrapper rustNightly)
|
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) [
|
2022-07-09 18:06:46 +00:00
|
|
|
autoPatchelfHook
|
2023-05-09 16:51:28 +00:00
|
|
|
gcc11
|
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
|
2023-04-17 18:08:37 +00:00
|
|
|
] ++ lib.optionals devTools [
|
2023-11-30 23:05:32 +00:00
|
|
|
shellcheck
|
2023-04-17 18:08:37 +00:00
|
|
|
gdb
|
2023-09-29 13:28:13 +00:00
|
|
|
openocd-stm
|
2023-04-17 18:08:37 +00:00
|
|
|
] ++ lib.optionals (devTools && acceptJlink) [
|
|
|
|
nrfutil
|
|
|
|
nrfconnect
|
|
|
|
nrf-command-line-tools
|
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;
|
|
|
|
})
|