2018-10-12 05:09:58 -07:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub, fetchpatch }:
|
2016-06-17 08:38:40 -07:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "hugo-${version}";
|
2018-10-26 11:49:57 -07:00
|
|
|
version = "0.49.2";
|
2016-06-17 08:38:40 -07:00
|
|
|
|
2017-06-16 01:56:31 -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-10-26 11:49:57 -07:00
|
|
|
sha256 = "0a320mv6x770vppbz0aw5ikywmy0mxqq1lhc0syp48hgg42d46is";
|
2016-06-17 08:38:40 -07:00
|
|
|
};
|
|
|
|
|
2018-10-12 05:09:58 -07:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/gohugoio/hugo/commit/b137ad4dbd6d14d0a9af68c044aaee61f2c87fe5.diff";
|
|
|
|
sha256 = "0w1gpg11idqywqcpwzvx4xabn02kk8y4jmyz4h67mc3yh2dhq3ll";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2016-09-10 03:04:13 -07:00
|
|
|
goDeps = ./deps.nix;
|
2016-10-09 09:44:25 -07:00
|
|
|
|
2018-08-02 11:49:19 -07:00
|
|
|
buildFlags = "-tags extended";
|
|
|
|
|
2018-06-18 01:51:13 -07:00
|
|
|
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
|
|
|
}
|