about summary refs log tree commit diff
path: root/shell.nix
blob: 561a162782e1c318156b582b36c7c324a9ed6717 (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; [
    git hugo rsync mdbook python3 cacert mdbook-toc
  ];
}