Added mathematica installer
This commit is contained in:
parent
f98b995b80
commit
596494e41b
|
@ -2,7 +2,7 @@
|
|||
|
||||
{
|
||||
imports = [
|
||||
./ide/mathematica.nix
|
||||
./ide/mathematica/default.nix
|
||||
./ide/matlab.nix
|
||||
# TODO: Move languages to make clear it is just IDE configuration
|
||||
# Languages should be installed with devShells, however the IDE must be configured globally
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Wolfram_14.1.0_Lin_Bndl.sh
|
|
@ -8,6 +8,11 @@
|
|||
with lib;
|
||||
let
|
||||
cfg = config.modules.mathematica;
|
||||
|
||||
my-mathematica = pkgs.mathematica.override {
|
||||
# TODO: Just use a generic name for the installer?
|
||||
source = ./Wolfram_14.1.0_LIN_Bndl.sh;
|
||||
};
|
||||
in
|
||||
{
|
||||
options.modules.mathematica = {
|
||||
|
@ -19,8 +24,8 @@ in
|
|||
"mathematica"
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
mathematica
|
||||
home.packages = [
|
||||
my-mathematica
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue