Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
868 B
Nix
44 lines
868 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
blas,
|
|
gfortran,
|
|
lapack,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "csdp";
|
|
version = "6.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.coin-or.org/download/source/Csdp/Csdp-${version}.tgz";
|
|
sha256 = "1f9ql6cjy2gwiyc51ylfan24v1ca9sjajxkbhszlds1lqmma8n05";
|
|
};
|
|
|
|
buildInputs = [
|
|
blas
|
|
gfortran.cc.lib
|
|
lapack
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile --replace /usr/local/bin $out/bin
|
|
substituteInPlace lib/Makefile \
|
|
--replace-fail 'ar cr' '${stdenv.cc.targetPrefix}ar cr'
|
|
'';
|
|
|
|
preInstall = ''
|
|
rm -f INSTALL
|
|
mkdir -p $out/bin
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://projects.coin-or.org/Csdp";
|
|
license = lib.licenses.cpl10;
|
|
maintainers = [ lib.maintainers.roconnor ];
|
|
description = "C Library for Semidefinite Programming";
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|