mirror of
https://git.adityakumar.xyz/nix-matlab.git
synced 2024-11-08 23:59:45 +00:00
66 lines
1 KiB
Nix
66 lines
1 KiB
Nix
|
/* This list of dependencies is based on the official Mathworks dockerfile for
|
||
|
R2020a, available at
|
||
|
https://github.com/mathworks-ref-arch/container-images
|
||
|
*/
|
||
|
|
||
|
{ }:
|
||
|
|
||
|
rec {
|
||
|
runPath = "$HOME/downloads/software/matlab/installation";
|
||
|
targetPkgs = pkgs:
|
||
|
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
|
||
|
|
||
|
gcc
|
||
|
gfortran
|
||
|
|
||
|
# nixos specific
|
||
|
udev
|
||
|
jre
|
||
|
ncurses # Needed for CLI
|
||
|
] ++ (with xorg; [
|
||
|
libSM
|
||
|
libX11
|
||
|
libxcb
|
||
|
libXcomposite
|
||
|
libXcursor
|
||
|
libXdamage
|
||
|
libXext
|
||
|
libXfixes
|
||
|
libXft
|
||
|
libXi
|
||
|
libXinerama
|
||
|
libXrandr
|
||
|
libXrender
|
||
|
libXt
|
||
|
libXtst
|
||
|
libXxf86vm
|
||
|
]);
|
||
|
}
|