2020-03-31 16:47:18 +02:00
|
|
|
{ lib, stdenv, fetchurl, blas, gfortran, lapack }:
|
2015-09-09 00:23:24 +02:00
|
|
|
|
2021-11-07 14:50:48 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "csdp";
|
|
|
|
version = "6.1.1";
|
2015-09-09 00:23:24 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-07 14:50:48 +01:00
|
|
|
url = "https://www.coin-or.org/download/source/Csdp/Csdp-${version}.tgz";
|
2015-09-09 00:23:24 +02:00
|
|
|
sha256 = "1f9ql6cjy2gwiyc51ylfan24v1ca9sjajxkbhszlds1lqmma8n05";
|
|
|
|
};
|
|
|
|
|
2020-03-31 16:47:18 +02:00
|
|
|
buildInputs = [ blas gfortran.cc.lib lapack ];
|
2015-09-09 00:23:24 +02:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile --replace /usr/local/bin $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
preInstall = ''
|
2016-04-22 11:52:15 +02:00
|
|
|
rm -f INSTALL
|
2015-09-09 00:23:24 +02:00
|
|
|
mkdir -p $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://projects.coin-or.org/Csdp";
|
2015-09-09 00:23:24 +02:00
|
|
|
license = lib.licenses.cpl10;
|
|
|
|
maintainers = [ lib.maintainers.roconnor ];
|
|
|
|
description = "A C Library for Semidefinite Programming";
|
2021-01-15 14:21:58 +01:00
|
|
|
platforms = lib.platforms.unix;
|
2015-09-09 00:23:24 +02:00
|
|
|
};
|
|
|
|
}
|