mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
26 lines
781 B
Nix
26 lines
781 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 ];
|
|
mainProgram = "tdfgo";
|
|
};
|
|
}
|