nixos-config/pkgs/wayback.nix

24 lines
567 B
Nix
Raw Normal View History

2022-03-27 00:36:59 +00:00
{ stdenv, lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "wayback";
version = "0.17.0";
src = fetchFromGitHub {
owner = "wabarc";
repo = pname;
rev = "v${version}";
sha256 = "sha256-ookQz906ZY0I7aHyxOu+VpyoMxNrQLjuXTj78N9iS/A=";
};
vendorSha256 = "sha256-X73qMp+Xx/XxR6odxpZTywmjYPGcbLZBChC/SsqFNVs=";
doCheck = false;
meta = with lib; {
2022-03-28 00:18:15 +00:00
description =
"Self-hosted toolkit for archiving webpages to the Internet Archive";
2022-03-27 00:36:59 +00:00
homepage = "https://wabarc.eu.org/";
2022-03-27 03:29:42 +00:00
license = licenses.gpl3Only;
2022-03-27 00:36:59 +00:00
};
}