mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 02:31:05 +00:00
120 lines
3.8 KiB
Nix
120 lines
3.8 KiB
Nix
{ fullDeps ? false
|
|
, hardwareTest ? false
|
|
}:
|
|
|
|
let
|
|
# the last commit from master as of 2021-12-06
|
|
rustOverlay = import (builtins.fetchTarball {
|
|
url = "https://github.com/oxalica/rust-overlay/archive/96f1bd1ec11d9c9e8b41c7560df9efae8d091908.tar.gz";
|
|
sha256 = "07qfya55d3lw4mblm62ykx8h9zg2ms3891ik30qzzpywwacafi8j";
|
|
});
|
|
# the last successful build of nixpkgs-unstable as of 2021-11-18
|
|
nixpkgs = import (builtins.fetchTarball {
|
|
url = "https://github.com/NixOS/nixpkgs/archive/7fad01d9d5a3f82081c00fb57918d64145dc904c.tar.gz";
|
|
sha256 = "0g0jn8cp1f3zgs7xk2xb2vwa44gb98qlp7k0dvigs0zh163c2kim";
|
|
}) { overlays = [ rustOverlay ]; };
|
|
# commit before python36 was removed
|
|
python36nixpkgs = import (builtins.fetchTarball {
|
|
url = "https://github.com/NixOS/nixpkgs/archive/b9126f77f553974c90ab65520eff6655415fc5f4.tar.gz";
|
|
sha256 = "02s3qkb6kz3ndyx7rfndjbvp4vlwiqc42fxypn3g6jnc0v5jyz95";
|
|
}) { };
|
|
moneroTests = nixpkgs.fetchurl {
|
|
url = "https://github.com/ph4r05/monero/releases/download/v0.17.1.9-tests/trezor_tests";
|
|
sha256 = "410bc4ff2ff1edc65e17f15b549bd1bf8a3776cf67abdea86aed52cf4bce8d9d";
|
|
};
|
|
moneroTestsPatched = nixpkgs.runCommandCC "monero_trezor_tests" {} ''
|
|
cp ${moneroTests} $out
|
|
chmod +wx $out
|
|
${nixpkgs.patchelf}/bin/patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$out"
|
|
chmod -w $out
|
|
'';
|
|
rustStable = nixpkgs.rust-bin.stable."1.57.0".minimal.override {
|
|
targets = [
|
|
"thumbv7em-none-eabihf" # TT
|
|
"thumbv7m-none-eabi" # T1
|
|
];
|
|
# we use rustfmt from nixpkgs because it's built with the nighly flag needed for wrap_comments
|
|
# to use official binary, remove rustfmt from buildInputs and add it to extensions:
|
|
extensions = [ "clippy" ];
|
|
};
|
|
gcc = nixpkgs.gcc11;
|
|
llvmPackages = nixpkgs.llvmPackages_12;
|
|
# see pyright/README.md for update procedure
|
|
pyright = nixpkgs.callPackage ./pyright {};
|
|
in
|
|
with nixpkgs;
|
|
stdenvNoCC.mkDerivation ({
|
|
name = "trezor-firmware-env";
|
|
buildInputs = lib.optionals fullDeps [
|
|
# install other python versions for tox testing
|
|
# NOTE: running e.g. "python3" in the shell runs the first version in the following list,
|
|
# and poetry uses the default version (currently 3.8)
|
|
python38
|
|
python39
|
|
python37
|
|
python36nixpkgs.python36
|
|
] ++ [
|
|
SDL2
|
|
SDL2_image
|
|
autoflake
|
|
bash
|
|
check
|
|
curl # for connect tests
|
|
editorconfig-checker
|
|
gcc
|
|
gcc-arm-embedded
|
|
git
|
|
gitAndTools.git-subrepo
|
|
gnumake
|
|
graphviz
|
|
libffi
|
|
libjpeg
|
|
libusb1
|
|
llvmPackages.clang
|
|
openssl
|
|
pkgconfig
|
|
poetry
|
|
protobuf3_6
|
|
pyright
|
|
rustfmt
|
|
rustStable
|
|
wget
|
|
zlib
|
|
moreutils
|
|
] ++ lib.optionals (!stdenv.isDarwin) [
|
|
procps
|
|
valgrind
|
|
] ++ lib.optionals (stdenv.isDarwin) [
|
|
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
|
|
] ++ lib.optionals hardwareTest [
|
|
uhubctl
|
|
ffmpeg
|
|
dejavu_fonts
|
|
];
|
|
LD_LIBRARY_PATH = "${libffi}/lib:${libjpeg.out}/lib:${libusb1}/lib:${libressl.out}/lib";
|
|
NIX_ENFORCE_PURITY = 0;
|
|
|
|
# Fix bdist-wheel problem by setting source date epoch to a more recent date
|
|
SOURCE_DATE_EPOCH = 1600000000;
|
|
|
|
# Used by rust bindgen
|
|
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
|
|
|
# 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" ];
|
|
|
|
} // (lib.optionalAttrs fullDeps) {
|
|
TREZOR_MONERO_TESTS_PATH = moneroTestsPatched;
|
|
})
|