Commit 93a55400 authored by figsoda's avatar figsoda
Browse files

tml: init at 0.6.0

parent b65bce55
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };