mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
55474bdadd
Simply bumping the nixpkgs unstable version causes python test to fail: https://gitlab.com/satoshilabs/trezor/trezor-firmware/-/jobs/1008507521 Until that's resolved we can stay on the current nixpkgs version and use our own copy of the uhubctl nix expression.
15 lines
360 B
Nix
15 lines
360 B
Nix
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;
|
|
}
|