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
3 changed files with 36 additions and 0 deletions

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;
};
}