Textadept icon

Textadept 12.8

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.8",
  "src": {
    "url": "https://github.com/orbitalquark/textadept/releases/download/textadept_12.8/textadept_12.8.macOS.zip",
    "sha256": "85072473600e4d8b3cb325461e833240478df2bb5e2907bfb89ae6186d45ad04"
  },
  "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/"
  }
}