Merge pull request #276678 from drupol/fix/hugo/add-missing-mainProgram

hugo: add missing `meta.mainProgram`
This commit is contained in:
Maciej Krüger 2023-12-25 16:04:23 +01:00 committed by GitHub
commit 44823f6d44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -14,7 +14,7 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "gohugoio";
repo = pname;
repo = "hugo";
rev = "refs/tags/v${version}";
hash = "sha256-XNOp0k2t5Tv4HKKz3ZqL/sAdiYedOACaZ/1T7t7/Q1A=";
};
@ -48,10 +48,12 @@ buildGoModule rec {
version = "v${version}";
};
meta = with lib; {
meta = {
changelog = "https://github.com/gohugoio/hugo/releases/tag/v${version}";
description = "A fast and modern static website engine";
homepage = "https://gohugo.io";
license = licenses.asl20;
maintainers = with maintainers; [ schneefux Br1ght0ne Frostman ];
license = lib.licenses.asl20;
mainProgram = "hugo";
maintainers = with lib.maintainers; [ schneefux Br1ght0ne Frostman ];
};
}

View File

@ -32483,8 +32483,6 @@ with pkgs;
huggle = libsForQt5.callPackage ../applications/misc/huggle { };
hugo = callPackage ../applications/misc/hugo { };
ghosttohugo = callPackage ../applications/misc/ghosttohugo {};
gatekeeper = callPackage ../applications/networking/cluster/gatekeeper { };