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.2",
"src": {
"url": "https://www.xm1math.net/texmaker/assets/files/texmaker-6.0.2.dmg",
"sha256": "367b5ceae905a3808ed11f473e33ac8b3cf9805783e23bda07513fc913deb52a"
},
"installPhase": [
"mkdir -p \"$out/Applications/texmaker.app\" && cp -r \"texmaker.app\" \"$out/Applications\""
],
"meta": {
"description": "LaTeX editor",
"homepage": "https://www.xm1math.net/texmaker/"
}
}