6 lines
110 B
Nix
6 lines
110 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
name = "hugo";
|
|
nativeBuildInputs = with pkgs; [ hugo ];
|
|
}
|