pplatex: init at unstable-2015-09-14 (#73461)

This commit is contained in:
SRGOM 2019-11-16 00:31:11 +05:30 committed by Dmitry Kalinkin
parent ab99684408
commit d587092e9e
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, pcre }:
stdenv.mkDerivation {
pname = "pplatex";
version = "unstable-2015-09-14";
src = fetchFromGitHub {
owner = "stefanhepp";
repo = "pplatex";
rev = "5cec891ad6aec0115081cdd114ae1cc4f1ed7c06";
sha256 = "0wrkkbz6b6x91650nm8gccz7xghlp7b1i31fxwalz9xw3py9xygb";
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ pcre ];
installPhase = ''
runHook preInstall
install -Dm555 src/pplatex "$out"/bin/pplatex
runHook postInstall
'';
meta = with stdenv.lib; {
description =
"A tool to reformat the output of latex and friends into readable messages";
homepage = "https://github.com/stefanhepp/pplatex";
license = licenses.gpl3Plus;
maintainers = [ maintainers.srgom ];
platforms = platforms.unix;
};
}

View file

@ -5740,6 +5740,8 @@ in
ppl = callPackage ../development/libraries/ppl { };
pplatex = callPackage ../tools/typesetting/tex/pplatex { };
ppp = callPackage ../tools/networking/ppp { };
pptp = callPackage ../tools/networking/pptp {};