Merge pull request #246484 from aaronjheng/webcat

webcat: unstable-2021-09-06 -> 0.2.0
This commit is contained in:
Weijia Wang
2023-08-05 12:35:42 +02:00
committed by GitHub
+6 -7
View File
@@ -1,18 +1,17 @@
{ lib, buildGoModule, fetchFromGitea, asciidoctor, installShellFiles }:
{ lib, buildGoModule, fetchFromGitHub, asciidoctor, installShellFiles }:
buildGoModule rec {
pname = "webcat";
version = "unstable-2021-09-06";
version = "0.2.0";
src = fetchFromGitea {
domain = "codeberg.org";
src = fetchFromGitHub {
owner = "rumpelsepp";
repo = "webcat";
rev = "57a65558f0affac0b2f8f4831c52964eb9ad5386";
sha256 = "15c62sjr15l5hwkvc4xarfn76341wi16pjv9qbr1agaz1vqgr6rd";
rev = "v${version}";
hash = "sha256-JyZHH8JgS3uoNVicx1wj0SAzlrXyTrpwIBZuok6buRw=";
};
vendorSha256 = "1apnra58mqrazbq53f0qlqnyyhjdvvdz995yridxva0fxmwpwcjy";
vendorHash = "sha256-duVp/obT+5M4Dl3BAdSgRaP3+LKmS0y51loMMdoGysw=";
nativeBuildInputs = [ asciidoctor installShellFiles ];