Notepad.exe icon

Notepad.exe 1.4.1561

Lightweight code editor

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    notepadexe # Notepad.exe
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    notepadexe # Notepad.exe
  ];
}

Package Definition

{
  "pname": "notepadexe",
  "version": "1.4.1561",
  "src": {
    "url": "https://github.com/notepadhq/notepadexe-public/releases/download/1.4.1561/Notepad.zip",
    "sha256": "2bd84c258982f7244cff7b2709e46382849a751aa09f32f268822b79220fbe03"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/Notepad.exe.app\" && cp -r \"Notepad.exe.app\" \"$out/Applications\""
  ],
  "meta": {
    "description": "Lightweight code editor",
    "homepage": "https://notepadexe.com/"
  }
}