Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a4c8b2fa46b4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 671a8ae2316f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 1, 2019

  1. latex2html: 2018 -> 2019.2

    yurrriq committed Sep 1, 2019
    Copy the full SHA
    7b6d3b2 View commit details

Commits on Oct 23, 2019

  1. Merge pull request #67785 from yurrriq/update/latex2html

    latex2html: 2018 -> 2019.2
    Mic92 authored Oct 23, 2019
    Copy the full SHA
    671a8ae View commit details
Showing with 7 additions and 8 deletions.
  1. +7 −8 pkgs/tools/misc/latex2html/default.nix
15 changes: 7 additions & 8 deletions pkgs/tools/misc/latex2html/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
{ stdenv, fetchurl, makeWrapper
{ stdenv, fetchFromGitHub, makeWrapper
, ghostscript, netpbm, perl }:
# TODO: withTex

# Ported from Homebrew.
# https://github.com/Homebrew/homebrew-core/blob/21834573f690407d34b0bbf4250b82ec38dda4d6/Formula/latex2html.rb

stdenv.mkDerivation rec {
pname = "latex2html";
version = "2018";
version = "2019.2";

src = fetchurl {
url = "http://mirrors.ctan.org/support/latex2html/latex2html-${version}.tar.gz";
sha256 = "1qnlg8ajh0amy9gy8rh8sp1l224ak54264i3dhk7rrv9s4k7bqq9";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "1bcdhbaxf334wlxzkw5samj2y2q173709y0km3x8xs4bbh70ds6c";
};

buildInputs = [ ghostscript netpbm perl ];