free_pte_mock_test/shell.nix
2025-03-31 09:48:59 +00:00

12 lines
229 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = [
(pkgs.texlive.combine {
inherit(pkgs.texlive)
scheme-medium
biber
biblatex;
})
pkgs.gnumake
];
}