12 lines
353 B
Nix
12 lines
353 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
let
|
|
latex = (pkgs.texlive.combine {
|
|
inherit (pkgs.texlive)
|
|
scheme-basic
|
|
beamer amsmath mathtools breqn
|
|
environ
|
|
multirow graphics import adjustbox tabu vwcol stmaryrd ulem ragged2e
|
|
dvisvgm dvipng wrapfig hyperref capt-of;
|
|
});
|
|
in pkgs.mkShell { nativeBuildInputs = [ pkgs.gnumake latex ]; }
|
|
|