12 lines
212 B
Nix
12 lines
212 B
Nix
{ 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";
|
|
}
|