depot/third_party/nixpkgs/pkgs/tools/misc/tdfgo/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

24 lines
755 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "tdfgo";
version = "unstable-2022-08-25";
src = fetchFromGitHub {
owner = "digitallyserviced";
repo = "tdfgo";
rev = "9f0b3315eed32409639a05aca55d7a0252681193";
sha256 = "sha256-Lr4+bXdVxYbCXKVzE+fjeLD559HuABK6lOLJ0sBBGNY=";
};
vendorHash = "sha256-T6PSs5NfXSXvzlq67rIDbzURyA+25df3nMMfufo0fow=";
meta = with lib; {
description = "TheDraw font parser and console text renderer.";
longDescription = "Supports more fonts than `tdfiglet`, and packs more features.";
homepage = "https://github.com/digitallyserviced/tdfgo";
license = licenses.cc0;
platforms = platforms.linux;
maintainers = with maintainers; [ crinklywrappr ];
};
}