mirror of
https://git.adityakumar.xyz/nix-matlab.git
synced 2024-11-09 16:19:45 +00:00
parent
fb271fb9d4
commit
f2f21f3b18
2 changed files with 101 additions and 13 deletions
80
flake.nix
80
flake.nix
|
@ -55,6 +55,16 @@
|
|||
"plotting"
|
||||
];
|
||||
};
|
||||
# Might be useful for usage of this flake in another flake with devShell +
|
||||
# direnv setup. See:
|
||||
# https://gitlab.com/doronbehar/nix-matlab/-/merge_requests/1#note_631741222
|
||||
shellHooksCommon = runScriptPrefix + ''
|
||||
export C_INCLUDE_PATH=$INSTALL_DIR/extern/include:$C_INCLUDE_PATH
|
||||
export CPLUS_INCLUDE_PATH=$INSTALL_DIR/extern/include:$CPLUS_INCLUDE_PATH
|
||||
# Rename the variable for others to extend it in their shellHook
|
||||
export MATLAB_INSTALL_DIR="$INSTALL_DIR"
|
||||
unset INSTALL_DIR
|
||||
'';
|
||||
in {
|
||||
|
||||
packages.x86_64-linux.matlab = pkgs.buildFHSUserEnv {
|
||||
|
@ -75,7 +85,7 @@
|
|||
packages.x86_64-linux.matlab-shell = pkgs.buildFHSUserEnv {
|
||||
name = "matlab-shell";
|
||||
inherit targetPkgs;
|
||||
runScript = runScriptPrefix + ''
|
||||
runScript = shellHooksCommon + ''
|
||||
cat <<EOF
|
||||
============================
|
||||
welcome to nix-matlab shell!
|
||||
|
@ -91,6 +101,61 @@
|
|||
exec bash
|
||||
'';
|
||||
};
|
||||
# This could have been defined as an overlay for the python3.pkgs attribute
|
||||
# set, defined with `packageOverrides`, but this won't bring any benefit
|
||||
# because in order to use the matlab engine, one needs to be inside an
|
||||
# FHSUser environment anyway.
|
||||
packages.x86_64-linux.matlab-python-package = pkgs.python3.pkgs.buildPythonPackage rec {
|
||||
# No version - can be used with every matlab version (R2021b or R2021a etc)
|
||||
name = "matlab-python-package";
|
||||
unpackCmd = ''
|
||||
cp -r ${src}/ matlab-python-src
|
||||
sourceRoot=$PWD/matlab-python-src
|
||||
'';
|
||||
patches = [
|
||||
# Matlab designed this python package to be installed imperatively, and
|
||||
# on an impure system - running `python setup.py install` creates an
|
||||
# `_arch.txt` file in /usr/local/lib/python3.9/site-packages/matlab (or
|
||||
# alike), which tells the `__init__.py` where matlab is installed and
|
||||
# where do some .so files reside. This doesn't suit a nix installation,
|
||||
# and the best way IMO to work around this is to patch the __init__.py
|
||||
# file to use the $MATLAB_INSTALL_DIR to find these shared objects and
|
||||
# not read any _arch.txt file.
|
||||
./python-no_arch.txt-file.patch
|
||||
];
|
||||
src = pkgs.requireFile {
|
||||
name = "matlab-python-src";
|
||||
/*
|
||||
NOTE: Perhaps for a different matlab installation of perhaps a
|
||||
different version of matlab, this hash will be different.
|
||||
To check / compare / print the hash created by your installation:
|
||||
|
||||
$ nix-store --query --hash \
|
||||
$(nix store add-path $INSTALL_DIR/extern/engines/python --name 'matlab-python-src')
|
||||
*/
|
||||
sha256 = "19wdzglr8j6966d3s777mckry2kcn99xbfwqyl5j02ir3vidd23h";
|
||||
hashMode = "recursive";
|
||||
message = ''
|
||||
In order to use the matlab python engine, you have to run this command:
|
||||
|
||||
```
|
||||
source ~/.config/matlab/nix.sh
|
||||
nix store add-path $INSTALL_DIR/extern/engines/python --name 'matlab-python-src'
|
||||
```
|
||||
|
||||
And hopefully the hash that's in nix-matlab's flake.nix will be the
|
||||
same as the one generated from your installation.
|
||||
'';
|
||||
};
|
||||
};
|
||||
packages.x86_64-linux.matlab-python-shell = pkgs.buildFHSUserEnv {
|
||||
name = "matlab-python-shell";
|
||||
inherit targetPkgs;
|
||||
runScript = shellHooksCommon + ''
|
||||
export PYTHONPATH=${self.packages.x86_64-linux.matlab-python-package-R2021b}/${pkgs.python3.sitePackages}
|
||||
exec python "$@"
|
||||
'';
|
||||
};
|
||||
packages.x86_64-linux.matlab-mlint = pkgs.buildFHSUserEnv {
|
||||
name = "mlint";
|
||||
inherit targetPkgs;
|
||||
|
@ -108,18 +173,7 @@
|
|||
overlay = final: prev: {
|
||||
inherit (self.packages.x86_64-linux) matlab matlab-shell matlab-mlint matlab-mex;
|
||||
};
|
||||
# Might be useful for usage of this flake in another flake with devShell +
|
||||
# direnv setup. See:
|
||||
# https://gitlab.com/doronbehar/nix-matlab/-/merge_requests/1#note_631741222
|
||||
shellHooksCommon = runScriptPrefix + ''
|
||||
# To `import matlab` inside the Python that's inside the dev shell
|
||||
export PYTHONPATH="$INSTALL_DIR/extern/engines/python/dist"
|
||||
export C_INCLUDE_PATH=$INSTALL_DIR/extern/include:$C_INCLUDE_PATH
|
||||
export CPLUS_INCLUDE_PATH=$INSTALL_DIR/extern/include:$CPLUS_INCLUDE_PATH
|
||||
# Rename the variable for others to extend it in their shellHook
|
||||
export MATLAB_INSTALL_DIR="$INSTALL_DIR"
|
||||
unset INSTALL_DIR
|
||||
'';
|
||||
inherit shellHooksCommon;
|
||||
devShell.x86_64-linux = pkgs.mkShell {
|
||||
buildInputs = (targetPkgs pkgs) ++ [
|
||||
self.packages.x86_64-linux.matlab-shell
|
||||
|
|
34
python-no_arch.txt-file.patch
Normal file
34
python-no_arch.txt-file.patch
Normal file
|
@ -0,0 +1,34 @@
|
|||
diff --git i/dist/matlab/engine/__init__.py w/dist/matlab/engine/__init__.py
|
||||
index 45bf9ae..d606284 100644
|
||||
--- i/dist/matlab/engine/__init__.py
|
||||
+++ w/dist/matlab/engine/__init__.py
|
||||
@@ -50,10 +50,13 @@ except Exception as firstE:
|
||||
|
||||
if firstExceptionMessage:
|
||||
try:
|
||||
- _arch_file = open(_arch_filename,'r')
|
||||
- _lines = _arch_file.readlines()
|
||||
- [_arch, _bin_dir,_engine_dir, _extern_bin_dir] = [x.rstrip() for x in _lines if x.rstrip() != ""]
|
||||
- _arch_file.close()
|
||||
+ # TODO: Support for other architectures?
|
||||
+ _arch = "glnxa64"
|
||||
+ nix_install_location = os.path.expandvars('$MATLAB_INSTALL_DIR')
|
||||
+ _bin_dir = os.path.join(nix_install_location, 'bin')
|
||||
+ _engine_dir = os.path.join(nix_install_location,
|
||||
+ 'extern', 'engines', 'python', 'dist', 'matlab', 'engine', _arch)
|
||||
+ _extern_bin_dir = os.path.join(nix_install_location, 'extern', 'bin', _arch)
|
||||
sys.path.insert(0,_engine_dir)
|
||||
sys.path.insert(0,_extern_bin_dir)
|
||||
|
||||
diff --git i/setup.py w/setup.py
|
||||
index 49149e5..9f45560 100644
|
||||
--- i/setup.py
|
||||
+++ w/setup.py
|
||||
@@ -72,7 +72,6 @@ class BuildEngine(build_py):
|
||||
def run(self):
|
||||
build_py.run(self)
|
||||
_target_dir = os.path.join(self.build_lib, _matlab_package, _engine_package)
|
||||
- self._generate_arch_file(_target_dir)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
Loading…
Reference in a new issue