2016-06-17 16:38:40 +01:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "hugo-${version}";
|
2018-06-16 19:46:37 +01:00
|
|
|
version = "0.42.1";
|
2016-06-17 16:38:40 +01:00
|
|
|
|
2017-06-16 09:56:31 +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}";
|
2018-06-16 19:46:37 +01:00
|
|
|
sha256 = "17m8bkldvnd7yyzxi4rc8vv3qfypjzik38bjy4qavb7sjdjmfij9";
|
2016-06-17 16:38:40 +01:00
|
|
|
};
|
|
|
|
|
2016-09-10 11:04:13 +01:00
|
|
|
goDeps = ./deps.nix;
|
2016-10-09 17:44:25 +01:00
|
|
|
|
2018-06-18 09:51:13 +01:00
|
|
|
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
|
|
|
}
|