1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00
nixpkgs/pkgs/applications/misc/hugo/default.nix

31 lines
661 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
2016-06-17 16:38:40 +01:00
buildGoPackage rec {
name = "hugo-${version}";
2019-02-16 19:06:15 +00:00
version = "0.54.0";
2016-06-17 16:38:40 +01:00
goPackagePath = "github.com/gohugoio/hugo";
2016-06-17 16:38:40 +01:00
src = fetchFromGitHub {
2018-02-21 14:08:58 +00:00
owner = "gohugoio";
repo = "hugo";
rev = "v${version}";
2019-02-16 19:06:15 +00:00
sha256 = "01grfbr3kpd4qf5cbcmzc6yfq34cm0nkak4pqzgrn46r254y0ymv";
2016-06-17 16:38:40 +01:00
};
goDeps = ./deps.nix;
2016-10-09 17:44:25 +01:00
2018-08-02 19:49:19 +01:00
buildFlags = "-tags extended";
postInstall = ''
rm $bin/bin/generate
'';
2018-02-21 14:08:58 +00:00
meta = with stdenv.lib; {
2016-10-09 17:44:25 +01:00
description = "A fast and modern static website engine.";
homepage = https://gohugo.io;
2018-02-21 14:08:58 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ schneefux ];
2016-10-09 17:44:25 +01:00
};
2016-06-17 16:38:40 +01:00
}