Notepad.exe icon

Notepad.exe 1.5.1

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