aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: bd6582950cdaa0611a68a0d8a95be8066603d3ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
with import <nixpkgs> {};

stdenv.mkDerivation rec {
  name = "env";
  env = buildEnv { name = name; paths = buildInputs; };
  buildInputs = let
    InputXSLT = callPackage ./InputXSLT.nix {};
  in [
    InputXSLT
    pandoc
    highlight
    nodejs
    python3
  ];
}