hugo: add missing meta.mainProgram
This commit is contained in:
parent
e520c76913
commit
a2ed961c89
2 changed files with 6 additions and 6 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue