Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
texmaker # Texmaker
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
texmaker # Texmaker
];
} Package Definition
{
"pname": "texmaker",
"version": "6.0.1",
"src": {
"url": "https://www.xm1math.net/texmaker/assets/files/texmaker-6.0.1.dmg",
"sha256": "2bed3912c84749ea5ac646e5df99d6f5e5270e00f8377ae15a562a47c50d622e"
},
"installPhase": [
"mkdir -p \"$out/Applications/texmaker.app\" && cp -r \"texmaker.app\" \"$out/Applications\""
],
"meta": {
"description": "LaTeX editor",
"homepage": "https://www.xm1math.net/texmaker/"
}
}