pplatex: init at unstable-2015-09-14 (#73461)
This commit is contained in:
parent
ab99684408
commit
d587092e9e
32
pkgs/tools/typesetting/tex/pplatex/default.nix
Normal file
32
pkgs/tools/typesetting/tex/pplatex/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user