about summary refs log tree commit diff
path: root/shell.nix
blob: f2dff6d1046678ed021c86022b73dafcde1f6fde (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
  ]);
}