teensyduino: add missing dependencies for teensy-loader
This commit is contained in:
parent
4f69262c19
commit
b13f8788dc
|
@ -3,7 +3,8 @@
|
||||||
, withGui ? false, gtk2 ? null, withTeensyduino ? false
|
, withGui ? false, gtk2 ? null, withTeensyduino ? false
|
||||||
/* Packages needed for Teensyduino */
|
/* Packages needed for Teensyduino */
|
||||||
, upx, fontconfig, xorg, gcc
|
, upx, fontconfig, xorg, gcc
|
||||||
, atk, glib, pango, gdk-pixbuf, libpng12, expat, freetype,
|
, atk, glib, pango, gdk-pixbuf, libpng12, expat, freetype
|
||||||
|
, cairo, udev
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert withGui -> gtk2 != null;
|
assert withGui -> gtk2 != null;
|
||||||
|
@ -32,6 +33,7 @@ let
|
||||||
|
|
||||||
teensy_libpath = stdenv.lib.makeLibraryPath [
|
teensy_libpath = stdenv.lib.makeLibraryPath [
|
||||||
atk
|
atk
|
||||||
|
cairo
|
||||||
expat
|
expat
|
||||||
fontconfig
|
fontconfig
|
||||||
freetype
|
freetype
|
||||||
|
@ -42,11 +44,13 @@ let
|
||||||
libpng12
|
libpng12
|
||||||
libusb
|
libusb
|
||||||
pango
|
pango
|
||||||
|
udev
|
||||||
xorg.libSM
|
xorg.libSM
|
||||||
xorg.libX11
|
xorg.libX11
|
||||||
xorg.libXext
|
xorg.libXext
|
||||||
xorg.libXft
|
xorg.libXft
|
||||||
xorg.libXinerama
|
xorg.libXinerama
|
||||||
|
xorg.libXxf86vm
|
||||||
zlib
|
zlib
|
||||||
];
|
];
|
||||||
teensy_architecture =
|
teensy_architecture =
|
||||||
|
|
Loading…
Reference in New Issue