hugo: add git as a dependency

Hugo needs Git to find meta informations such as the pubDate
This commit is contained in:
zimbatm 2020-02-23 17:03:24 +01:00
parent 889fb542e6
commit cca23be027
No known key found for this signature in database
GPG key ID: 71BAF6D40C1D63D7
2 changed files with 4 additions and 1 deletions

View file

@ -1,6 +1,8 @@
{ buildCLIImage
, hugo
, gitReallyMinimal
}:
buildCLIImage {
drv = hugo;
extraContents = [ gitReallyMinimal ];
}