Textadept icon

Textadept 12.5

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.5",
  "src": {
    "url": "https://github.com/orbitalquark/textadept/releases/download/textadept_12.5/textadept_12.5.macOS.zip",
    "sha256": "c04a3178d620b8d03e14a09dc573b01c4da26803322dede53fb774ad0989bd7d"
  },
  "installPhase": [
    "mkdir -p \"$out/Applications\" && cp -r \"Textadept.app\" \"$out/Applications/Textadept.app\"",
    "mkdir -p \"$out/bin\" && ln -s \"ta\" \"$out/bin/ta\""
  ],
  "meta": {
    "description": "Text editor",
    "homepage": "https://orbitalquark.github.io/textadept/"
  }
}