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

31 lines
659 B
Nix
Raw Normal View History

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