1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 19:09:10 +00:00
trezor-firmware/shell.nix
Pavol Rusnak bcf20363eb
nix: let's install clang instead of clang-tools
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
2019-10-18 17:31:57 +00:00

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
'';
}