Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 25 lines 813 B view raw
1{ lib, buildDunePackage, fetchurl }: 2 3buildDunePackage rec { 4 pname = "ANSITerminal"; 5 version = "0.8.5"; 6 7 src = fetchurl { 8 url = "https://github.com/Chris00/ANSITerminal/releases/download/${version}/ANSITerminal-${version}.tbz"; 9 hash = "sha256-q3OyGLajAmfSu8QzEtzzE5gbiwvsVV2SsGuHZkst0w4="; 10 }; 11 12 doCheck = true; 13 14 meta = with lib; { 15 description = "A module allowing to use the colors and cursor movements on ANSI terminals"; 16 longDescription = '' 17 ANSITerminal is a module allowing to use the colors and cursor 18 movements on ANSI terminals. It also works on the windows shell (but 19 this part is currently work in progress). 20 ''; 21 homepage = "https://github.com/Chris00/ANSITerminal"; 22 license = licenses.lgpl3; 23 maintainers = [ maintainers.jirkamarsik ]; 24 }; 25}