mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 23:10:12 +00:00
bcf20363eb
clang package will install clang-format v7 which is the same as we use in the docker container installing clang-tools will install clang-format v9 which has different formatting rules
44 lines
952 B
Nix
44 lines
952 B
Nix
with import <nixpkgs> {};
|
|
|
|
stdenv.mkDerivation {
|
|
name = "trezor-firmware-dev";
|
|
buildInputs = [
|
|
SDL2
|
|
SDL2_image
|
|
autoflake
|
|
check
|
|
clang
|
|
gcc
|
|
gnumake
|
|
graphviz
|
|
libjpeg
|
|
libressl
|
|
libusb1
|
|
pipenv
|
|
pkgconfig
|
|
protobuf3_6
|
|
scons
|
|
valgrind
|
|
zlib
|
|
] ++ stdenv.lib.optionals (!stdenv.isDarwin) [
|
|
gcc-arm-embedded
|
|
] ++ stdenv.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
|
|
];
|
|
LD_LIBRARY_PATH="${libjpeg.out}/lib:${libusb1}/lib:${libressl.out}/lib";
|
|
shellHook = ''
|
|
pipenv shell
|
|
exit
|
|
'';
|
|
}
|