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

31 lines
661 B
Nix
Raw Normal View History

2016-06-17 08:38:40 -07:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "hugo-${version}";
2018-08-21 02:57:35 -07:00
version = "0.47.1";
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";
repo = "hugo";
rev = "v${version}";
2018-08-21 02:57:35 -07:00
sha256 = "0n27vyg66jfx4lwswsmdlybly8c9gy5rk7yhy7wzs3rwzlqv1jzj";
2016-06-17 08:38:40 -07:00
};
goDeps = ./deps.nix;
2016-10-09 09:44:25 -07:00
2018-08-02 11:49:19 -07:00
buildFlags = "-tags extended";
postInstall = ''
rm $bin/bin/generate
'';
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
}