Merge pull request #182900 from mmlb/add-tcat

This commit is contained in:
Sandro 2022-09-23 18:54:44 +02:00 committed by GitHub
commit b075b0d05e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "tcat";
version = "1.0.0";
src = fetchFromGitHub {
owner = "rsc";
repo = pname;
rev = "v${version}";
sha256 = "1szzfz5xsx9l8gjikfncgp86hydzpvsi0y5zvikd621xkp7g7l21";
};
vendorSha256 = "0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5";
subPackages = ".";
meta = with lib; {
description = "Table cat";
homepage = "https://github.com/rsc/tcat";
maintainers = with maintainers; [ mmlb ];
license = licenses.bsd3;
};
}

View File

@ -36514,6 +36514,8 @@ with pkgs;
tagref = callPackage ../tools/misc/tagref { }; tagref = callPackage ../tools/misc/tagref { };
tcat = callPackage ../tools/misc/tcat { };
tellico = libsForQt5.callPackage ../applications/misc/tellico { }; tellico = libsForQt5.callPackage ../applications/misc/tellico { };
termpdfpy = python3Packages.callPackage ../applications/misc/termpdf.py {}; termpdfpy = python3Packages.callPackage ../applications/misc/termpdf.py {};