latexrun: init at unstable-2015-11-18

This commit is contained in:
Lars Jellema 2019-04-03 15:30:42 +02:00
parent 07b42ccf2d
commit 8cc7b1cce3
No known key found for this signature in database
GPG key ID: 563A03936D48B4BC
3 changed files with 36 additions and 0 deletions

View file

@ -2758,6 +2758,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

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