Textadept icon

Textadept 12.6

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