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

25 lines
573 B
Nix
Raw Normal View History

2016-06-17 15:38:40 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "hugo-${version}";
2017-08-12 06:32:15 +00:00
version = "0.26";
2016-06-17 15:38:40 +00:00
goPackagePath = "github.com/gohugoio/hugo";
2016-06-17 15:38:40 +00:00
src = fetchFromGitHub {
2017-06-21 13:13:31 +00:00
owner = "gohugoio";
2016-06-17 15:38:40 +00:00
repo = "hugo";
2016-10-09 16:44:25 +00:00
rev = "v${version}";
2017-08-12 06:32:15 +00:00
sha256 = "1g2brxhc6lyl2qa41lrqw2hadl601inmshsxlpmv99ax67sa19d1";
2016-06-17 15:38:40 +00:00
};
goDeps = ./deps.nix;
2016-10-09 16:44:25 +00: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 15:38:40 +00:00
}