9 lines
181 B
Nix
9 lines
181 B
Nix
|
{ config, lib, pkgs, nix-matlab, ... }: {
|
||
|
environment.systemPackages = with nix-matlab.packages.x86_64-linux; [
|
||
|
matlab
|
||
|
matlab-shell
|
||
|
matlab-mlint
|
||
|
matlab-mex
|
||
|
];
|
||
|
}
|