Merge pull request #182900 from mmlb/add-tcat
This commit is contained in:
commit
b075b0d05e
21
pkgs/tools/misc/tcat/default.nix
Normal file
21
pkgs/tools/misc/tcat/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -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 {};
|
||||||
|
Loading…
Reference in New Issue
Block a user