mirror of
https://git.adityakumar.xyz/nix-matlab.git
synced 2024-11-08 23:59:45 +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; };
|
||
|
}
|