Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildGo124Module,
|
|
fetchFromGitHub,
|
|
versionCheckHook,
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildGo124Module rec {
|
|
pname = "gowebly";
|
|
version = "3.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gowebly";
|
|
repo = "gowebly";
|
|
tag = "v${version}";
|
|
hash = "sha256-r1yyMbnpt0sDgqkm/EqaYysQnm48uIXzQHqJObVpT9g=";
|
|
};
|
|
|
|
vendorHash = "sha256-N48/67fMPsylNGr6ixay4si+9ifUryxkIJxKDYU46+o=";
|
|
|
|
env.CGO_ENABLED = 0;
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
versionCheckProgramArg = "doctor";
|
|
doInstallCheck = true;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "CLI tool to create web applications with Go backend";
|
|
longDescription = ''
|
|
A CLI tool that makes it easy to create web applications
|
|
with Go on the backend, using htmx, hyperscript or Alpine.js,
|
|
and the most popular CSS frameworks on the frontend.
|
|
'';
|
|
homepage = "https://gowebly.org";
|
|
changelog = "https://github.com/gowebly/gowebly/releases/tag/v${version}";
|
|
license = lib.licenses.asl20;
|
|
mainProgram = "gowebly";
|
|
maintainers = with lib.maintainers; [ cterence ];
|
|
};
|
|
}
|