Merge pull request #74929 from filalex77/hugo-0.60.1

hugo: 0.60.0 -> 0.60.1
This commit is contained in:
Maximilian Bosch 2019-12-03 20:48:33 +01:00 committed by GitHub
commit a431ee8441
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,18 +2,18 @@
buildGoModule rec {
pname = "hugo";
version = "0.60.0";
version = "0.60.1";
goPackagePath = "github.com/gohugoio/hugo";
src = fetchFromGitHub {
owner = "gohugoio";
repo = pname;
rev = "v${version}";
sha256 = "0g8rq79xp7c9p31xc0anfjyz7xp8n7qzv3vmvg2nmzl7nayg88aa";
owner = "gohugoio";
repo = pname;
rev = "v${version}";
sha256 = "0l8n87y5zrs09s693rqvqwz0233wlr4jwib7r36ilss1qgm7x6n5";
};
modSha256 = "12h1ik1hgs4lkmk699wpa34rnycnm03qyr2vp1y5lywz1h93by20";
modSha256 = "1an4plbx06fzz2iqzgs08r6vsjpkl5lbqck5jqmv6fv7b7psf7iw";
buildFlags = "-tags extended";
@ -21,8 +21,8 @@ buildGoModule rec {
meta = with stdenv.lib; {
description = "A fast and modern static website engine.";
homepage = https://gohugo.io;
homepage = "https://gohugo.io";
license = licenses.asl20;
maintainers = with maintainers; [ schneefux ];
maintainers = with maintainers; [ schneefux filalex77 ];
};
}