8 lines
108 B
Nix
8 lines
108 B
Nix
with (import <nixpkgs> {});
|
|
mkShell {
|
|
buildInputs = [
|
|
python3
|
|
texlive.combined.scheme-full
|
|
];
|
|
}
|