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

43 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub, libsass }:
2016-06-17 17:38:40 +02:00
buildGoModule rec {
pname = "hugo";
2020-06-25 15:02:59 +02:00
version = "0.73.0";
2016-06-17 17:38:40 +02:00
buildInputs = [ libsass ];
2016-06-17 17:38:40 +02:00
src = fetchFromGitHub {
2019-12-03 19:16:13 +01:00
owner = "gohugoio";
repo = pname;
rev = "v${version}";
2020-06-25 15:02:59 +02:00
sha256 = "0qhv8kdv5k1xfk6106lxvsz7f92k7w6wk05ngz7qxbkb6zkcnshw";
2016-06-17 17:38:40 +02:00
};
golibsass = fetchFromGitHub {
owner = "bep";
repo = "golibsass";
rev = "8a04397f0baba474190a9f58019ff499ec43057a";
sha256 = "0xk3m2ynbydzx87dz573ihwc4ryq0r545vz937szz175ivgfrhh3";
};
overrideModAttrs = (_: {
postBuild = ''
rm -rf vendor/github.com/bep/golibsass/
cp -r --reflink=auto ${golibsass} vendor/github.com/bep/golibsass
'';
});
2020-05-31 17:33:22 +02:00
vendorSha256 = "07dkmrldsxw59v6r4avj1gr4hsaxybhb14qv61hc777qix2kq9v1";
2016-10-09 18:44:25 +02:00
buildFlags = [ "-tags" "extended" ];
2018-08-02 20:49:19 +02:00
subPackages = [ "." ];
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.";
2019-12-03 19:16:13 +01:00
homepage = "https://gohugo.io";
2018-02-21 15:08:58 +01:00
license = licenses.asl20;
2020-02-04 10:49:01 +01:00
maintainers = with maintainers; [ schneefux filalex77 Frostman ];
2016-10-09 18:44:25 +02:00
};
2016-06-17 17:38:40 +02:00
}