nix-matlab/common.nix

71 lines
943 B
Nix
Raw Normal View History

2021-05-14 13:02:26 +00:00
/* This list of dependencies is based on the official Mathworks dockerfile for
R2020a, available at
https://github.com/mathworks-ref-arch/container-images
*/
2021-05-14 14:15:05 +00:00
pkgs:
2021-05-14 13:02:26 +00:00
2021-05-14 14:15:05 +00:00
(with pkgs; [
cacert
alsaLib # libasound2
atk
glib
glibc
cairo
cups
dbus
fontconfig
gdk-pixbuf
#gst-plugins-base
# gstreamer
gtk3
nspr
nss
pam
pango
python27
python36
python37
libselinux
libsndfile
glibcLocales
procps
unzip
zlib
2021-05-14 13:02:26 +00:00
2021-10-11 17:37:20 +00:00
# These packages are needed since 2021b version
gnome2.gtk
at_spi2_atk
at-spi2-core
libdrm
libGL_driver
2021-05-14 14:15:05 +00:00
gcc
gfortran
2021-05-14 13:02:26 +00:00
2021-05-14 14:15:05 +00:00
# nixos specific
udev
jre
ncurses # Needed for CLI
2021-09-07 10:24:02 +00:00
# Keyboard input may not work in simulink otherwise
libxkbcommon
xkeyboard_config
2021-05-14 14:15:05 +00:00
]) ++ (with pkgs.xorg; [
libSM
libX11
libxcb
libXcomposite
libXcursor
libXdamage
libXext
libXfixes
libXft
libXi
libXinerama
libXrandr
libXrender
libXt
libXtst
libXxf86vm
])