Textadept icon

Textadept 12.7

Text editor

Installation

System wide:

{
  environment.systemPackages = with nix-casks.packages.${system}; [
    textadept # Textadept
  ];
}

Home Manager:

{
  home.packages = with nix-casks.packages.${system}; [
    textadept # Textadept
  ];
}

Package Definition

{
  "pname": "textadept",
  "version": "12.7",
  "src": {
    "url": "https://github.com/orbitalquark/textadept/releases/download/textadept_12.7/textadept_12.7.macOS.zip",
    "sha256": "20e310e3c7fafcee04db1f252c9fc4ffe23fecc9dbdb2a94ff520ba0ff5b5256"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications/Textadept.app\" && cp -r \"Textadept.app\" \"$out/Applications\"",
    "mkdir -p \"$out/bin\" && ln -s \"ta\" \"$out/bin/ta\""
  ],
  "meta": {
    "description": "Text editor",
    "homepage": "https://orbitalquark.github.io/textadept/"
  }
}