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: 1f5c2833e945
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 709c2bf19fad
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 8, 2017

  1. pygmentex: update src

    romildo committed Nov 8, 2017

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    df94f7b View commit details
  2. Merge pull request #31405 from romildo/fix.pygmentex

    pygmentex: update src
    Mic92 authored Nov 8, 2017
    Copy the full SHA
    709c2bf View commit details
Showing with 7 additions and 5 deletions.
  1. +7 −5 pkgs/tools/typesetting/pygmentex/default.nix
12 changes: 7 additions & 5 deletions pkgs/tools/typesetting/pygmentex/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{ stdenv, fetchzip, python2Packages }:
{ stdenv, fetchFromBitbucket, python2Packages }:

python2Packages.buildPythonApplication rec {
name = "pygmentex-${version}";
version = "0.8";

src = fetchzip {
url = "http://mirrors.ctan.org/macros/latex/contrib/pygmentex.zip";
sha256 = "1nm19pvhlv51mv2sdankndhw64ys9r7ch6szzd6i4jz8zr86kn9v";
src = fetchFromBitbucket {
owner = "romildo";
repo = "pygmentex";
rev = version;
sha256 = "07dnv7hgppy15bda2kcbrlvfqzl6lhza80klc7133dwg8q92hm6m";
};

pythonPath = [ python2Packages.pygments python2Packages.chardet ];
@@ -38,7 +40,7 @@ python2Packages.buildPythonApplication rec {
texlive.combine.
'';
license = licenses.lppl13c;
maintainers = with maintainers; [ romildo ];
platforms = platforms.unix;
maintainers = with maintainers; [ romildo ];
};
}