summary refs log tree commit diff
path: root/pkgs/misc/tex/texlive/beamer.nix
blob: ab960a5ca762698d9bacf4538796f6eeab10e7e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
args: with args;
rec {
  name = "texlive-beamer-2007";
  src = fetchurl {
    url = http://ftp.de.debian.org/debian/pool/main/l/latex-beamer/latex-beamer_3.07.orig.tar.gz;
    sha256 = "07ldhg5f0hcnhjgzg5g8ailqacn8zhqc8nl2jkxc43c2qxbvswbv";
  };

  buildInputs = [texLive];
  propagatedBuildInputs = [texLiveLatexXColor texLivePGF];
  phaseNames = ["doCopy"];
  doCopy = FullDepEntry (''
    ensureDir $out/share/texmf-dist/tex/latex/beamer
    cp -r * $out/share/texmf-dist/tex/latex/beamer 
  '') ["minInit" "doUnpack" "defEnsureDir" "addInputs"];

  meta = {
    description = "Extra components for TeXLive: beamer class";
  };
}