mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
commit
21d1b195c8
@ -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";
|
||||
|
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;
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user