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

29 lines
722 B
Nix
Raw Normal View History

2020-03-21 10:12:00 +00:00
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
2016-06-17 15:38:40 +00:00
buildGoModule rec {
pname = "hugo";
version = "0.68.1";
2016-06-17 15:38:40 +00:00
src = fetchFromGitHub {
2019-12-03 18:16:13 +00:00
owner = "gohugoio";
repo = pname;
rev = "v${version}";
sha256 = "1h7zymvxk71jq51az4qnldk54jl9sd4zwkn5r5323xzjffwzny82";
2016-06-17 15:38:40 +00:00
};
2020-03-21 18:42:10 +00:00
modSha256 = "04vzm65kbj9905z4cf5yh6yc6g3b0pd5vc00lrxw84pwgqgc0ykb";
2016-10-09 16:44:25 +00:00
2020-03-21 10:12:00 +00:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
buildFlags = [ "-tags" "extended" ];
2018-08-02 18:49:19 +00:00
subPackages = [ "." ];
2018-02-21 14:08:58 +00:00
meta = with stdenv.lib; {
2016-10-09 16:44:25 +00: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;
2020-02-04 09:49:01 +00:00
maintainers = with maintainers; [ schneefux filalex77 Frostman ];
2016-10-09 16:44:25 +00:00
};
2016-06-17 15:38:40 +00:00
}