Merge pull request #234489 from figsoda/tml

tml: init at 0.6.0
This commit is contained in:
Fabian Affolter
2023-05-28 22:58:12 +02:00
committed by GitHub
2 changed files with 30 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{ 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";
changelog = "https://github.com/liamg/tml/releases/tag/v${version}";
license = licenses.unlicense;
maintainers = with maintainers; [ figsoda ];
};
}
+2
View File
@@ -13066,6 +13066,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 { };