You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/ci/hardware_tests/shell.nix

15 lines
360 B

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