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

Commits on Jun 15, 2017

  1. glpk: 4.61 -> 4.62

    lsix committed Jun 15, 2017
    Copy the full SHA
    ea32c77 View commit details

Commits on Jun 30, 2017

  1. Merge pull request #26587 from lsix/update_glpk

    glpk: 4.61 -> 4.62
    bennofs authored Jun 30, 2017
    Copy the full SHA
    2442ac9 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/glpk/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/glpk/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ fetchurl, stdenv }:

stdenv.mkDerivation rec {
name = "glpk-4.61";
name = "glpk-4.62";

src = fetchurl {
url = "mirror://gnu/glpk/${name}.tar.gz";
sha256 = "1adbvwiaqrv9pql9ry3lhn2vfsxnff2vh4fs477d90kpfx0xwrlq";
sha256 = "0w7s3869ybwyq9a4490dikpib1qp3jnn5nqz1vvwqy1qz3ilnvh9";
};

doCheck = true;