mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
32 lines
740 B
Nix
32 lines
740 B
Nix
{ lib, stdenv, fetchurl, blas, gfortran, lapack }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "csdp-6.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.coin-or.org/download/source/Csdp/Csdp-6.1.1.tgz";
|
|
sha256 = "1f9ql6cjy2gwiyc51ylfan24v1ca9sjajxkbhszlds1lqmma8n05";
|
|
};
|
|
|
|
nativeBuildInputs = [ gfortran ];
|
|
|
|
buildInputs = [ blas lapack ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile --replace /usr/local/bin $out/bin
|
|
'';
|
|
|
|
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 = "A C Library for Semidefinite Programming";
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|