* Sync with the trunk.

svn path=/nixpkgs/branches/stdenv-updates/; revision=25308
This commit is contained in:
Eelco Dolstra
2010-12-28 16:42:00 +00:00
115 changed files with 2957 additions and 20 deletions
+17
View File
@@ -0,0 +1,17 @@
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "lkproof-3.1";
src = fetchurl {
url = http://mirror.ctan.org/macros/latex/contrib/lkproof.zip;
sha256 = "1qjkjhpc4rm62qxn18r83zdlwnj1wvnkcpdiqlv7w4bakh0gvjly";
};
buildInputs = [ unzip ];
installPhase = "
ensureDir $out/share/texmf-nix/tex/generic/lkproof
cp -prd *.sty $out/share/texmf-nix/tex/generic/lkproof
";
}