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

29 lines
627 B
Nix
Raw Normal View History

2016-06-17 15:38:40 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "hugo-${version}";
2018-06-16 18:46:37 +00:00
version = "0.42.1";
2016-06-17 15:38:40 +00:00
goPackagePath = "github.com/gohugoio/hugo";
2016-06-17 15:38:40 +00:00
src = fetchFromGitHub {
2018-02-21 14:08:58 +00:00
owner = "gohugoio";
repo = "hugo";
rev = "v${version}";
2018-06-16 18:46:37 +00:00
sha256 = "17m8bkldvnd7yyzxi4rc8vv3qfypjzik38bjy4qavb7sjdjmfij9";
2016-06-17 15:38:40 +00:00
};
goDeps = ./deps.nix;
2016-10-09 16:44:25 +00:00
postInstall = ''
rm $bin/bin/generate
'';
2018-02-21 14:08:58 +00:00
meta = with stdenv.lib; {
2016-10-09 16:44:25 +00: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 16:44:25 +00:00
};
2016-06-17 15:38:40 +00:00
}