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

Commits on Jun 1, 2019

  1. gnuplot: 5.2.6 -> 5.2.7

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/gnuplot/versions
    r-ryantm committed Jun 1, 2019
    Copy the full SHA
    b99711b View commit details

Commits on Jun 2, 2019

  1. Merge pull request #62422 from r-ryantm/auto-update/gnuplot

    gnuplot: 5.2.6 -> 5.2.7
    etu authored Jun 2, 2019
    Copy the full SHA
    c8c0990 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/tools/graphics/gnuplot/default.nix
4 changes: 2 additions & 2 deletions pkgs/tools/graphics/gnuplot/default.nix
Original file line number Diff line number Diff line change
@@ -19,11 +19,11 @@ let
withX = libX11 != null && !aquaterm && !stdenv.isDarwin;
in
stdenv.mkDerivation rec {
name = "gnuplot-5.2.6";
name = "gnuplot-5.2.7";

src = fetchurl {
url = "mirror://sourceforge/gnuplot/${name}.tar.gz";
sha256 = "1vllgap08nhvdmc03idmkdnk9cfl2bp81hps50q1pqrr640qzp9m";
sha256 = "1vglp4la40f5dpj0zdj63zprrkyjgzy068p35bz5dqxjyczm1zlp";
};

nativeBuildInputs = [ makeWrapper pkgconfig texinfo ] ++ lib.optional withQt qttools;