Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
535 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchurl,
unzip,
}:
stdenv.mkDerivation {
pname = "lkproof";
version = "3.1";
src = fetchurl {
url = "http://mirror.ctan.org/macros/latex/contrib/lkproof.zip";
sha256 = "1qjkjhpc4rm62qxn18r83zdlwnj1wvnkcpdiqlv7w4bakh0gvjly";
};
nativeBuildInputs = [ unzip ];
installPhase = "
mkdir -p $out/share/texmf-nix/tex/generic/lkproof
cp -prd *.sty $out/share/texmf-nix/tex/generic/lkproof
";
meta = with lib; {
platforms = platforms.unix;
license = licenses.gpl1Plus;
};
}