lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.05-pre 22 lines 593 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "vttest"; 5 version = "20230924"; 6 7 src = fetchurl { 8 urls = [ 9 "https://invisible-mirror.net/archives/${pname}/${pname}-${version}.tgz" 10 "ftp://ftp.invisible-island.net/${pname}/${pname}-${version}.tgz" 11 ]; 12 sha256 = "sha256-vosHy1kJdtH0KvhZfdrayAjQiwomi7YwSoh9qz8Toig="; 13 }; 14 15 meta = with lib; { 16 description = "Tests the compatibility of so-called 'VT100-compatible' terminals"; 17 homepage = "https://invisible-island.net/vttest/"; 18 license = licenses.mit; 19 platforms = platforms.all; 20 }; 21} 22