latexrun: init at unstable-2015-11-18
This commit is contained in:
29
pkgs/tools/typesetting/tex/latexrun/default.nix
Normal file
29
pkgs/tools/typesetting/tex/latexrun/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user