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

31 lines
685 B
Nix
Raw Normal View History

2020-07-28 03:33:32 +00:00
{ stdenv, buildGoModule, fetchFromGitHub }:
2016-06-17 15:38:40 +00:00
buildGoModule rec {
pname = "hugo";
2020-11-30 22:23:14 +00:00
version = "0.79.0";
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}";
2020-11-30 22:23:14 +00:00
sha256 = "0i9c12w0jlfrqb5gygfn20rn41m7qy6ab03n779wbzwfqqz85mj6";
2016-06-17 15:38:40 +00:00
};
2020-11-30 22:23:14 +00:00
vendorSha256 = "0jb6aqdv9yx7fxbkgd73rx6kvxagxscrin5b5bal3ig7ys1ghpsp";
doCheck = false;
2020-06-04 02:56:24 +00:00
runVend = true;
2016-10-09 16:44:25 +00:00
buildFlags = [ "-tags" "extended" ];
2018-08-02 18:49:19 +00:00
subPackages = [ "." ];
2018-02-21 14:08:58 +00:00
meta = with stdenv.lib; {
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;
maintainers = with maintainers; [ schneefux Br1ght0ne Frostman ];
2016-10-09 16:44:25 +00:00
};
2016-06-17 15:38:40 +00:00
}