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

25 lines
569 B
Nix
Raw Normal View History

2016-06-17 17:38:40 +02:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "hugo-${version}";
2017-04-14 10:34:55 +02:00
version = "0.20.1";
2016-06-17 17:38:40 +02:00
goPackagePath = "github.com/spf13/hugo";
src = fetchFromGitHub {
owner = "spf13";
repo = "hugo";
2016-10-09 18:44:25 +02:00
rev = "v${version}";
2017-04-14 10:34:55 +02:00
sha256 = "1mxg9mp98n32q1qsqd9f9izsq1s18a7jsw8gcyh9vbspdnyghb7q";
2016-06-17 17:38:40 +02:00
};
goDeps = ./deps.nix;
2016-10-09 18:44:25 +02:00
meta = {
description = "A fast and modern static website engine.";
homepage = https://gohugo.io;
maintainers = with stdenv.lib.maintainers; [ schneefux ];
license = stdenv.lib.licenses.asl20;
};
2016-06-17 17:38:40 +02:00
}