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