1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-19 14:30:31 +00:00
trezor-firmware/ci/hardware_tests/shell.nix

15 lines
360 B
Nix
Raw Normal View History

with import ../nixpkgs.nix;
stdenv.mkDerivation rec {
name = "trezor-firmware-hardware-tests";
buildInputs = [
(callPackage ./uhubctl.nix { }) # HACK FIXME replace this with just uhubctl once pinned version of nixpkgs is updated
ffmpeg
poetry
libusb1
dejavu_fonts
];
LD_LIBRARY_PATH = "${libusb1}/lib";
NIX_ENFORCE_PURITY = 0;
}