Unverified Commit 2a7c84e1 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

issue2md: 1.2.0 -> 1.3.0 (#447694)

parents f93b1093 4fe84439
Loading
Loading
Loading
Loading
+3 −8
Original line number Diff line number Diff line
@@ -6,27 +6,22 @@

buildGoModule (finalAttrs: {
  pname = "issue2md";
  version = "1.2.0";
  version = "1.3.0";

  src = fetchFromGitHub {
    owner = "bigwhite";
    repo = "issue2md";
    tag = "v${finalAttrs.version}";
    hash = "sha256-jwMaXiGcdNCQZJ2xht1oAcFJohFJiTH3lV3+opZ677g=";
    hash = "sha256-bbID2yJkVdzWJ+LcQCTTeoMsQpJdT4op9PhTDwr+D+A=";
  };

  vendorHash = null;

  ldflags = [
    "-s"
    "-w"
  ];

  meta = {
    description = "CLI tool to convert GitHub issue into Markdown file";
    homepage = "https://github.com/bigwhite/issue2md";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ ];
    maintainers = with lib.maintainers; [ drupol ];
    mainProgram = "issue2md";
  };
})