Merge pull request #62378 from r-ryantm/auto-update/clp

clp: 1.17.1 -> 1.17.2
This commit is contained in:
worldofpeace 2019-06-01 12:10:36 -04:00 committed by GitHub
commit b33513d237
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];