garage/doc/talks/shell.nix
Alex c2541f280c
All checks were successful
continuous-integration/drone/push Build is passing
[talk-fosdem-24] WIP, write talk, modify lots of assets
2024-01-23 16:50:30 +01:00

13 lines
361 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 textpos
dvisvgm dvipng wrapfig hyperref capt-of;
});
in pkgs.mkShell { nativeBuildInputs = [ pkgs.gnumake latex ]; }