nixpkgs/pkgs/applications/misc/hugo/default.nix

29 lines
676 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2016-06-17 16:38:40 +01:00
buildGoModule rec {
pname = "hugo";
version = "0.61.0";
2016-06-17 16:38:40 +01:00
goPackagePath = "github.com/gohugoio/hugo";
2016-06-17 16:38:40 +01:00
src = fetchFromGitHub {
2019-12-03 18:16:13 +00:00
owner = "gohugoio";
repo = pname;
rev = "v${version}";
sha256 = "1ad70g4gb44dk48pbgk48jzs44b6l7ksxb739ahp7vs1nyvvgffr";
2016-06-17 16:38:40 +01:00
};
modSha256 = "1jb1iqlp1005aj8smcgznmwnqaysi5g5wcsj8nvvm70hhc9j8wns";
2016-10-09 17:44:25 +01:00
2018-08-02 19:49:19 +01:00
buildFlags = "-tags extended";
subPackages = [ "." ];
2018-02-21 14:08:58 +00:00
meta = with stdenv.lib; {
2016-10-09 17:44:25 +01:00
description = "A fast and modern static website engine.";
2019-12-03 18:16:13 +00:00
homepage = "https://gohugo.io";
2018-02-21 14:08:58 +00:00
license = licenses.asl20;
2019-12-03 18:16:30 +00:00
maintainers = with maintainers; [ schneefux filalex77 ];
2016-10-09 17:44:25 +01:00
};
2016-06-17 16:38:40 +01:00
}