3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/hugo/default.nix

25 lines
576 B
Nix
Raw Normal View History

2016-06-17 16:38:40 +01:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "hugo-${version}";
2018-05-10 04:54:33 +01:00
version = "0.40.3";
2016-06-17 16:38:40 +01:00
goPackagePath = "github.com/gohugoio/hugo";
2016-06-17 16:38:40 +01:00
src = fetchFromGitHub {
2018-02-21 14:08:58 +00:00
owner = "gohugoio";
repo = "hugo";
rev = "v${version}";
2018-05-10 04:54:33 +01:00
sha256 = "08d4y6x19cd4qy9pf80zrqarcyarbzxph0yp8mfb1sp2bvq42308";
2016-06-17 16:38:40 +01:00
};
goDeps = ./deps.nix;
2016-10-09 17:44:25 +01:00
2018-02-21 14:08:58 +00:00
meta = with stdenv.lib; {
2016-10-09 17:44:25 +01: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 17:44:25 +01:00
};
2016-06-17 16:38:40 +01:00
}