Unverified Commit 1e86e39e authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

waybackurls: init at 0.1.0 (#394254)

parents de4885b6 991f6229
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{
  lib,
  buildGoModule,
  fetchFromGitHub,
}:

buildGoModule rec {
  pname = "waybackurls";
  version = "0.1.0";

  src = fetchFromGitHub {
    owner = "tomnomnom";
    repo = "waybackurls";
    tag = "v${version}";
    hash = "sha256-aX6pCEp2809oYn1BUwdfKzJzMttnZItGXC1QL4yMztg=";
  };

  vendorHash = null;

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

  meta = {
    description = "Tool to fetch all the URLs that the Wayback Machine knows about for a domain";
    homepage = "https://github.com/tomnomnom/waybackurls";
    changelog = "https://github.com/tomnomnom/waybackurls/releases/tag/${src.tag}";
    license = lib.licenses.unfree;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "waybackurls";
  };
}