Merge pull request #58939 from Lucus16/latexrun

Add latexrun package
This commit is contained in:
Dmitry Kalinkin 2019-04-05 19:00:16 -04:00 committed by GitHub
commit 21d1b195c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 0 deletions

View file

@ -2773,6 +2773,11 @@
github = "lucas8";
name = "Luc Chabassier";
};
lucus16 = {
email = "lars.jellema@gmail.com";
github = "Lucus16";
name = "Lars Jellema";
};
ludo = {
email = "ludo@gnu.org";
github = "civodul";

View file

@ -0,0 +1,29 @@
{ stdenvNoCC, fetchFromGitHub, python3 }:
stdenvNoCC.mkDerivation {
pname = "latexrun";
version = "unstable-2015-11-18";
src = fetchFromGitHub {
owner = "aclements";
repo = "latexrun";
rev = "38ff6ec2815654513c91f64bdf2a5760c85da26e";
sha256 = "0xdl94kn0dbp6r7jk82cwxybglm9wp5qwrjqjxmvadrqix11a48w";
};
buildInputs = [ python3 ];
dontBuild = true;
installPhase = ''
mkdir -p $out/bin
cp latexrun $out/bin/latexrun
chmod +x $out/bin/latexrun
'';
meta = with stdenvNoCC.lib; {
description = "A 21st century LaTeX wrapper";
homepage = https://github.com/aclements/latexrun;
license = licenses.mit;
maintainers = [ maintainers.lucus16 ];
platforms = platforms.all;
};
}

View file

@ -4029,6 +4029,8 @@ in
latex2html = callPackage ../tools/misc/latex2html { };
latexrun = callPackage ../tools/typesetting/tex/latexrun { };
ldapvi = callPackage ../tools/misc/ldapvi { };
ldns = callPackage ../development/libraries/ldns {