Differences From Artifact [d47e05571e]:

To Artifact [0c2df29181]:


1
2
3
4
5
6
7

8



9
with import <nixpkgs> {};
stdenv.mkDerivation rec {
  name = "env";
  env = buildEnv { name = name; paths = buildInputs; };
  buildInputs = [
    haskellPackages.pandoc
    mkdocs

  ];



}

|
|
<
|

|
>

>
>
>

1
2
3

4
5
6
7
8
9
10
11
12
with import <nixpkgs> {};
mkShell {
  venvDir = ".venv";

  buildInputs = with python3.pkgs; [
    haskellPackages.pandoc
    weasyprint
    venvShellHook
  ];
  postShellHook = ''
    pip install mkdocs-with-pdf
  '';
}