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

29 lines
670 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2016-06-17 08:38:40 -07:00
buildGoModule rec {
pname = "hugo";
2019-09-29 04:29:37 -07:00
version = "0.58.3";
2016-06-17 08:38:40 -07:00
goPackagePath = "github.com/gohugoio/hugo";
2016-06-17 08:38:40 -07:00
src = fetchFromGitHub {
2018-02-21 06:08:58 -08:00
owner = "gohugoio";
2019-09-29 04:29:37 -07:00
repo = pname;
2018-02-21 06:08:58 -08:00
rev = "v${version}";
2019-09-29 04:29:37 -07:00
sha256 = "00dhb6xilkwr9yhncpyc6alzqw77ch3vd85dc7lzsmhw1c80n0lc";
2016-06-17 08:38:40 -07:00
};
2019-09-29 04:29:37 -07:00
modSha256 = "0d6zc7hxb246zsvwsjz4ds6gdd2m95x6l3djh3mmciwfg9cd7prx";
2016-10-09 09:44:25 -07:00
2018-08-02 11:49:19 -07:00
buildFlags = "-tags extended";
subPackages = [ "." ];
2018-02-21 06:08:58 -08:00
meta = with stdenv.lib; {
2016-10-09 09:44:25 -07:00
description = "A fast and modern static website engine.";
homepage = https://gohugo.io;
2018-02-21 06:08:58 -08:00
license = licenses.asl20;
maintainers = with maintainers; [ schneefux ];
2016-10-09 09:44:25 -07:00
};
2016-06-17 08:38:40 -07:00
}