summaryrefslogtreecommitdiff
path: root/shell.nix
blob: 960eead7404e80a9f8d04a42ef01924e72a04ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# SPDX-FileCopyrightText: 2020 Ethel Morgan
#
# SPDX-License-Identifier: MIT

{ pkgs ? import <nixpkgs> {} }:

with pkgs; mkShell {
  buildInputs = [
    aspell
    aspellDicts.en
    aspellDicts.en-computers
    aspellDicts.en-science

    hunspell
    hunspellDicts.en_US

    entr

    python38Packages.jinja2
    python38Packages.markdown
    python38Packages.pyaml
  ];
}