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

Commits on Jun 1, 2019

  1. clp: 1.17.1 -> 1.17.2

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

    worldofpeace authored Jun 1, 2019
    Copy the full SHA
    62c68b8 View commit details
  3. Merge pull request #62378 from r-ryantm/auto-update/clp

    clp: 1.17.1 -> 1.17.2
    worldofpeace authored Jun 1, 2019
    Copy the full SHA
    b33513d View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/science/math/clp/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/science/math/clp/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, zlib }:

stdenv.mkDerivation rec {
version = "1.17.1";
version = "1.17.2";
name = "clp-${version}";
src = fetchurl {
url = "https://www.coin-or.org/download/source/Clp/Clp-${version}.tgz";
sha256 = "1wdg820g3iikf9344ijwsc8sy6c0m6im42bzzizm6rlmkvnmxhk9";
sha256 = "1fkmgpn0zaraymi6s3isrrscgjxggcs2yjrx7jfy4hb1jacx71zz";
};

propagatedBuildInputs = [ zlib ];
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
license = licenses.epl10;
homepage = https://projects.coin-or.org/Clp;
homepage = "https://github.com/coin-or/Clp";
description = "An open-source linear programming solver written in C++";
platforms = platforms.darwin ++ [ "x86_64-linux" ];
maintainers = [ maintainers.vbgl ];