mirror of
https://github.com/nix-community/docker-nixpkgs.git
synced 2026-01-11 20:30:37 -05:00
9 lines
117 B
Nix
9 lines
117 B
Nix
{ buildCLIImage
|
|
, hugo
|
|
, gitReallyMinimal
|
|
}:
|
|
buildCLIImage {
|
|
drv = hugo;
|
|
extraContents = [ gitReallyMinimal ];
|
|
}
|