mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 10:39:00 +00:00
15 lines
248 B
Nix
15 lines
248 B
Nix
with import <nixpkgs> {};
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "trezor-firmware-hardware-tests";
|
|
buildInputs = [
|
|
uhubctl
|
|
ffmpeg
|
|
poetry
|
|
libusb1
|
|
dejavu_fonts
|
|
];
|
|
LD_LIBRARY_PATH = "${libusb1}/lib";
|
|
NIX_ENFORCE_PURITY = 0;
|
|
}
|