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

clp: 1.16.11 -> 1.17.0
This commit is contained in:
markuskowa 2019-04-14 12:05:32 +02:00 committed by GitHub
commit 87f595a1f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,22 +1,22 @@
{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
version = "1.16.11";
version = "1.17.1";
name = "clp-${version}";
src = fetchurl {
url = "https://www.coin-or.org/download/source/Clp/Clp-${version}.tgz";
sha256 = "0fazlqpp845186nmixa9f1xfxqqkdr1xj4va7q29m8594ca4a9dm";
sha256 = "1wdg820g3iikf9344ijwsc8sy6c0m6im42bzzizm6rlmkvnmxhk9";
};
propagatedBuildInputs = [ zlib ];
doCheck = true;
meta = {
license = stdenv.lib.licenses.epl10;
meta = with stdenv.lib; {
license = licenses.epl10;
homepage = https://projects.coin-or.org/Clp;
description = "An open-source linear programming solver written in C++";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.vbgl ];
platforms = platforms.darwin ++ [ "x86_64-linux" ];
maintainers = [ maintainers.vbgl ];
};
}