mirror of
https://git.adityakumar.xyz/nix-matlab.git
synced 2024-11-14 02:09: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";
|
exec = "@out@/bin/matlab -desktop %F";
|
||||||
icon = "matlab";
|
icon = "matlab";
|
||||||
# Most of the following are copied from octave's desktop launcher
|
# Most of the following are copied from octave's desktop launcher
|
||||||
categories = "Utility;TextEditor;Development;IDE;";
|
categories = [
|
||||||
mimeType = "text/x-octave;text/x-matlab;";
|
"Utility"
|
||||||
extraEntries = ''
|
"TextEditor"
|
||||||
Keywords=science;math;matrix;numerical computation;plotting;
|
"Development"
|
||||||
'';
|
"IDE"
|
||||||
|
];
|
||||||
|
mimeTypes = [
|
||||||
|
"text/x-octave"
|
||||||
|
"text/x-matlab"
|
||||||
|
];
|
||||||
|
keywords = [
|
||||||
|
"science"
|
||||||
|
"math"
|
||||||
|
"matrix"
|
||||||
|
"numerical computation"
|
||||||
|
"plotting"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue