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

29 lines
670 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2016-06-17 16:38:40 +01:00
buildGoModule rec {
pname = "hugo";
2019-11-27 11:59:52 +00:00
version = "0.60.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";
2019-09-29 12:29:37 +01:00
repo = pname;
2018-02-21 14:08:58 +00:00
rev = "v${version}";
2019-11-27 11:59:52 +00:00
sha256 = "0g8rq79xp7c9p31xc0anfjyz7xp8n7qzv3vmvg2nmzl7nayg88aa";
2016-06-17 16:38:40 +01:00
};
2019-11-27 11:59:52 +00:00
modSha256 = "12h1ik1hgs4lkmk699wpa34rnycnm03qyr2vp1y5lywz1h93by20";
2016-10-09 17:44:25 +01:00
2018-08-02 19:49:19 +01:00
buildFlags = "-tags extended";
subPackages = [ "." ];
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
}