nixos/system/home/desktop/emacs/texlive/latex-beamer-ukaea/default.nix

12 lines
212 B
Nix
Raw Normal View History

{ stdenvNoCC }:
stdenvNoCC.mkDerivation {
pname = "latex-beamer-ukaea";
version = "0.1";
src = ./.;
installPhase = ''
mkdir -p $out/tex/latex
cp -r $src/* $out/tex/latex
'';
tlType = "run";
}