webcat: unstable-2021-09-06 -> 0.2.0

This commit is contained in:
Aaron Jheng 2023-08-01 03:45:08 +00:00
parent 37f8d83e9e
commit 491d7a111f
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

View file

@ -1,18 +1,17 @@
{ lib, buildGoModule, fetchFromGitea, asciidoctor, installShellFiles }: { lib, buildGoModule, fetchFromGitHub, asciidoctor, installShellFiles }:
buildGoModule rec { buildGoModule rec {
pname = "webcat"; pname = "webcat";
version = "unstable-2021-09-06"; version = "0.2.0";
src = fetchFromGitea { src = fetchFromGitHub {
domain = "codeberg.org";
owner = "rumpelsepp"; owner = "rumpelsepp";
repo = "webcat"; repo = "webcat";
rev = "57a65558f0affac0b2f8f4831c52964eb9ad5386"; rev = "v${version}";
sha256 = "15c62sjr15l5hwkvc4xarfn76341wi16pjv9qbr1agaz1vqgr6rd"; hash = "sha256-JyZHH8JgS3uoNVicx1wj0SAzlrXyTrpwIBZuok6buRw=";
}; };
vendorSha256 = "1apnra58mqrazbq53f0qlqnyyhjdvvdz995yridxva0fxmwpwcjy"; vendorHash = "sha256-duVp/obT+5M4Dl3BAdSgRaP3+LKmS0y51loMMdoGysw=";
nativeBuildInputs = [ asciidoctor installShellFiles ]; nativeBuildInputs = [ asciidoctor installShellFiles ];