about summary refs log tree commit diff
path: root/shell.nix
blob: 7d7eff26f4aee48823b9a55c07de173bb1c6f4b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# SPDX-FileCopyrightText: 2024 Ngô Ngọc Đức Huy <huyngo@disroot.org>
#
# SPDX-License-Identifier: CC-BY-SA-4.0

{pkgs ? import <nixpkgs> {}
}:
pkgs.mkShell {
  name="build-env";
  buildInputs = with pkgs; [
    hugo rsync mdbook
  ];
}