summary refs log tree commit diff
path: root/pkgs/applications/science/math/clp/default.nix
blob: daa9a53c59a1f54f51fdbad363b6ffd7b1ac04bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, zlib }:

stdenv.mkDerivation rec {
	version = "1.16.11";
	name = "clp-${version}";
	src = fetchurl {
		url = "https://www.coin-or.org/download/source/Clp/Clp-${version}.tgz";
		sha256 = "0fazlqpp845186nmixa9f1xfxqqkdr1xj4va7q29m8594ca4a9dm";
	};

	propagatedBuildInputs = [ zlib ];

	doCheck = true;

	checkTarget = "test";

	meta = {
		license = stdenv.lib.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 ];
	};
}