Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 26 lines 520 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "tcat"; 9 version = "1.0.0"; 10 src = fetchFromGitHub { 11 owner = "rsc"; 12 repo = "tcat"; 13 rev = "v${version}"; 14 sha256 = "1szzfz5xsx9l8gjikfncgp86hydzpvsi0y5zvikd621xkp7g7l21"; 15 }; 16 vendorHash = null; 17 subPackages = "."; 18 19 meta = with lib; { 20 description = "Table cat"; 21 homepage = "https://github.com/rsc/tcat"; 22 maintainers = with maintainers; [ mmlb ]; 23 license = licenses.bsd3; 24 mainProgram = "tcat"; 25 }; 26}