tml: init at 0.6.0

https://github.com/liamg/tml
This commit is contained in:
figsoda 2023-05-27 15:59:46 -04:00
parent b65bce55a2
commit 93a5540024
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "tml";
version = "0.6.0";
src = fetchFromGitHub {
owner = "liamg";
repo = "tml";
rev = "v${version}";
hash = "sha256-92GumJGdbqxhcIj1gdkiamUA4peDG/Ar6GEimj/E7lg=";
};
vendorHash = "sha256-YsEmxhyDMuvq48vdHFvgsIqbqDZbg8beS0nL7lsaFJ0=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "A tiny markup language for terminal output";
homepage = "https://github.com/liamg/tml";
license = licenses.unlicense;
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -13052,6 +13052,8 @@ with pkgs;
tmate-ssh-server = callPackage ../servers/tmate-ssh-server { };
tml = callPackage ../tools/text/tml { };
tmpwatch = callPackage ../tools/misc/tmpwatch { };
tmpmail = callPackage ../applications/networking/tmpmail { };