2021-01-11 07:54:33 +00:00
|
|
|
{lib, stdenv, fetchurl, unzip}:
|
2010-12-25 18:06:36 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2021-08-02 09:12:13 +00:00
|
|
|
pname = "lkproof";
|
|
|
|
version = "3.1";
|
2018-11-14 22:37:54 +00:00
|
|
|
|
2010-12-25 18:06:36 +00:00
|
|
|
src = fetchurl {
|
2020-04-01 01:11:51 +00:00
|
|
|
url = "http://mirror.ctan.org/macros/latex/contrib/lkproof.zip";
|
2010-12-25 18:06:36 +00:00
|
|
|
sha256 = "1qjkjhpc4rm62qxn18r83zdlwnj1wvnkcpdiqlv7w4bakh0gvjly";
|
|
|
|
};
|
2018-11-14 22:37:54 +00:00
|
|
|
|
2021-02-20 21:01:53 +00:00
|
|
|
nativeBuildInputs = [ unzip ];
|
2010-12-25 18:06:36 +00:00
|
|
|
|
|
|
|
installPhase = "
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/share/texmf-nix/tex/generic/lkproof
|
2010-12-25 18:06:36 +00:00
|
|
|
cp -prd *.sty $out/share/texmf-nix/tex/generic/lkproof
|
|
|
|
";
|
2016-08-02 16:06:29 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-11-14 22:37:54 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
license = licenses.gpl1Plus;
|
2016-08-02 16:06:29 +00:00
|
|
|
};
|
2010-12-25 18:06:36 +00:00
|
|
|
}
|