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

29 lines
681 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2016-06-17 17:38:40 +02:00
buildGoModule rec {
2016-06-17 17:38:40 +02:00
name = "hugo-${version}";
2019-04-26 20:32:54 +02:00
version = "0.55.4";
2016-06-17 17:38:40 +02:00
goPackagePath = "github.com/gohugoio/hugo";
2016-06-17 17:38:40 +02:00
src = fetchFromGitHub {
2018-02-21 15:08:58 +01:00
owner = "gohugoio";
repo = "hugo";
rev = "v${version}";
2019-04-26 20:32:54 +02:00
sha256 = "0hbkl8dhhdic0admrkvlp1h1bmfrrwfnvipx27clyk0f88jcvb7y";
2016-06-17 17:38:40 +02:00
};
2019-04-12 03:52:03 +02:00
modSha256 = "0yrwkaaasj9ihjjfbywnzkppix1y2znagg3dkyikk21sl5n0nz23";
2016-10-09 18:44:25 +02:00
2018-08-02 20:49:19 +02:00
buildFlags = "-tags extended";
subPackages = [ "." ];
2018-02-21 15:08:58 +01:00
meta = with stdenv.lib; {
2016-10-09 18:44:25 +02:00
description = "A fast and modern static website engine.";
homepage = https://gohugo.io;
2018-02-21 15:08:58 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ schneefux ];
2016-10-09 18:44:25 +02:00
};
2016-06-17 17:38:40 +02:00
}