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

Commits on Aug 3, 2018

  1. pdf-redact-tools: explicitly use python2Packages

    Python2-only syntax, e.g. print without paratheses, is used in the pdf-redact-tools script.
    Robert Schütz committed Aug 3, 2018
    Copy the full SHA
    bf25656 View commit details
  2. Merge pull request #44400 from dotlambda/pdfredacttools-python2

    pdf-redact-tools: explicitly use python2Packages
    Mic92 authored Aug 3, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    de68304 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/graphics/pdfredacttools/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/graphics/pdfredacttools/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pythonPackages, imagemagick, exiftool, file, ghostscript }:
{ stdenv, fetchFromGitHub, python2Packages, imagemagick, exiftool, file, ghostscript }:

pythonPackages.buildPythonApplication rec {
python2Packages.buildPythonApplication rec {
pname = "pdf-redact-tools";
version = "0.1.2";