mirror of
https://git.adityakumar.xyz/nix-matlab.git
synced 2024-11-09 16:19:45 +00:00
Merge branch 'master' into 'master'
Update to newest refactor of `makeDesktopItem` See merge request doronbehar/nix-matlab!3
This commit is contained in:
commit
b6758352e5
1 changed files with 17 additions and 5 deletions
22
flake.nix
22
flake.nix
|
@ -37,11 +37,23 @@
|
|||
exec = "@out@/bin/matlab -desktop %F";
|
||||
icon = "matlab";
|
||||
# Most of the following are copied from octave's desktop launcher
|
||||
categories = "Utility;TextEditor;Development;IDE;";
|
||||
mimeType = "text/x-octave;text/x-matlab;";
|
||||
extraEntries = ''
|
||||
Keywords=science;math;matrix;numerical computation;plotting;
|
||||
'';
|
||||
categories = [
|
||||
"Utility"
|
||||
"TextEditor"
|
||||
"Development"
|
||||
"IDE"
|
||||
];
|
||||
mimeTypes = [
|
||||
"text/x-octave"
|
||||
"text/x-matlab"
|
||||
];
|
||||
keywords = [
|
||||
"science"
|
||||
"math"
|
||||
"matrix"
|
||||
"numerical computation"
|
||||
"plotting"
|
||||
];
|
||||
};
|
||||
in {
|
||||
|
||||
|
|
Loading…
Reference in a new issue