Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
29 lines
535 B
Nix
29 lines
535 B
Nix
{
|
|
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;
|
|
};
|
|
}
|