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

38 lines
890 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub, fetchpatch }:
2016-06-17 18:38:40 +03:00
buildGoPackage rec {
name = "hugo-${version}";
version = "0.49.2";
2016-06-17 18:38:40 +03:00
goPackagePath = "github.com/gohugoio/hugo";
2016-06-17 18:38:40 +03:00
src = fetchFromGitHub {
2018-02-21 17:08:58 +03:00
owner = "gohugoio";
repo = "hugo";
rev = "v${version}";
sha256 = "0a320mv6x770vppbz0aw5ikywmy0mxqq1lhc0syp48hgg42d46is";
2016-06-17 18:38:40 +03:00
};
patches = [
(fetchpatch {
url = "https://github.com/gohugoio/hugo/commit/b137ad4dbd6d14d0a9af68c044aaee61f2c87fe5.diff";
sha256 = "0w1gpg11idqywqcpwzvx4xabn02kk8y4jmyz4h67mc3yh2dhq3ll";
})
];
goDeps = ./deps.nix;
2016-10-09 19:44:25 +03:00
2018-08-02 21:49:19 +03:00
buildFlags = "-tags extended";
postInstall = ''
rm $bin/bin/generate
'';
2018-02-21 17:08:58 +03:00
meta = with stdenv.lib; {
2016-10-09 19:44:25 +03:00
description = "A fast and modern static website engine.";
homepage = https://gohugo.io;
2018-02-21 17:08:58 +03:00
license = licenses.asl20;
maintainers = with maintainers; [ schneefux ];
2016-10-09 19:44:25 +03:00
};
2016-06-17 18:38:40 +03:00
}