Unverified Commit 3a74e488 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #234489 from figsoda/tml

tml: init at 0.6.0
parents fa386a50 ad420b31
Loading
Loading
Loading
Loading
+28 −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";
    changelog = "https://github.com/liamg/tml/releases/tag/v${version}";
    license = licenses.unlicense;
    maintainers = with maintainers; [ figsoda ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };