nixpkgs-immich/pkgs/tools/misc/tcat/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
512 B
Nix
Raw Permalink Normal View History

2024-09-17 10:23:40 -06:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "tcat";
version = "1.0.0";
src = fetchFromGitHub {
owner = "rsc";
repo = pname;
rev = "v${version}";
sha256 = "1szzfz5xsx9l8gjikfncgp86hydzpvsi0y5zvikd621xkp7g7l21";
};
vendorHash = null;
subPackages = ".";
meta = with lib; {
description = "Table cat";
homepage = "https://github.com/rsc/tcat";
maintainers = with maintainers; [ mmlb ];
license = licenses.bsd3;
mainProgram = "tcat";
};
}