mirror of
https://git.adityakumar.xyz/nix-matlab.git
synced 2025-02-18 22:20:05 +00:00
10 lines
238 B
Nix
10 lines
238 B
Nix
![]() |
{ callPackage }:
|
||
|
|
||
|
# TODO: Be explicit about versions in file and object names!
|
||
|
let
|
||
|
common = import ./common.nix { };
|
||
|
in {
|
||
|
matlab = callPackage ./matlab.nix { inherit common; };
|
||
|
mlint = callPackage ./mlint.nix { inherit common; };
|
||
|
}
|