Notepad.exe icon

Notepad.exe 1.5.5

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.5.5",
  "src": {
    "url": "https://github.com/notepadhq/notepadexe-public/releases/download/1.5.5/Notepad.zip",
    "sha256": "032899fc54c9858ad672c0a184981a145e97b918d14fce942b0a30ae97b5503e"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/Notepad.exe.app\" && cp -r \"Notepad.exe.app\" \"$out/Applications\""
  ],
  "meta": {
    "description": "Lightweight code editor",
    "homepage": "https://notepadexe.com/"
  }
}