Skip to content

Instantly share code, notes, and snippets.

@arianvp
Created May 8, 2018 11:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arianvp/ce67e737606f9bc409c56afa7bce6b3a to your computer and use it in GitHub Desktop.
Save arianvp/ce67e737606f9bc409c56afa7bce6b3a to your computer and use it in GitHub Desktop.
latexrun = stdenv.mkDerivation {
src = fetchFromGitHub {
owner = "aclements";
repo = "latexrun";
rev = "38ff6ec2815654513c91f64bdf2a5760c85da26e";
sha256 = "1p5adkqvmb1gsv9hnn3if0rdpnaq3v9a1zkfdy282yw05jaaaggz";
};
buildInputs = [ python36 ];
installPhase = ''
mkdir -p $out/bin
cp latexrun $out/bin/latexrun
'';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment