Update with subsetting scripts

This commit is contained in:
2025-02-23 21:07:14 +00:00
parent b0ca0f3916
commit d25e8219f2
3 changed files with 22 additions and 11 deletions

View File

@@ -14,6 +14,13 @@ let
gemset = ./gemset.nix;
};
pythonEnv = python3.withPackages (python-pkgs: [
python-pkgs.beautifulsoup4
python-pkgs.lxml
python-pkgs.fonttools
python-pkgs.brotli
]);
# --- Building Agda HTML ---
agdaEnv = agda.withPackages [ agdaPackages.standard-library ];
agdaHtml = settings:
@@ -52,7 +59,7 @@ let
gems = gems settings;
agdaHtml = agdaHtml settings;
buildInputs = [
hugo ruby stork agdaEnv
hugo ruby stork agdaEnv pythonEnv
];
};
in