docker-nixpkgs/images/hugo/default.nix
zimbatm cca23be027
hugo: add git as a dependency
Hugo needs Git to find meta informations such as the pubDate
2020-02-23 17:03:28 +01:00

8 lines
117 B
Nix

{ buildCLIImage
, hugo
, gitReallyMinimal
}:
buildCLIImage {
drv = hugo;
extraContents = [ gitReallyMinimal ];
}