nixpkgs/pkgs/applications/science/math/clp/default.nix

23 lines
607 B
Nix
Raw Normal View History

2017-08-26 08:01:30 +01:00
{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
2020-05-20 11:04:01 +01:00
version = "1.17.6";
pname = "clp";
2018-07-16 17:25:31 +01:00
src = fetchurl {
url = "https://www.coin-or.org/download/source/Clp/Clp-${version}.tgz";
2020-05-20 11:04:01 +01:00
sha256 = "0ap1f0lxppa6pnbc4bg7ih7a96avwaki482nig8w5fr3vg9wvkzr";
2018-07-16 17:25:31 +01:00
};
2017-08-26 08:01:30 +01:00
2018-07-16 17:25:31 +01:00
propagatedBuildInputs = [ zlib ];
2017-08-26 08:01:30 +01:00
2018-07-16 17:25:31 +01:00
doCheck = true;
2017-08-26 08:01:30 +01:00
2019-04-13 23:17:25 +01:00
meta = with stdenv.lib; {
license = licenses.epl10;
2019-06-01 17:08:20 +01:00
homepage = "https://github.com/coin-or/Clp";
2018-07-16 17:25:31 +01:00
description = "An open-source linear programming solver written in C++";
2019-04-13 23:17:25 +01:00
platforms = platforms.darwin ++ [ "x86_64-linux" ];
maintainers = [ maintainers.vbgl ];
2018-07-16 17:25:31 +01:00
};
2017-08-26 08:01:30 +01:00
}