summary refs log tree commit diff
path: root/pkgs/applications/science/math/csdp/default.nix
blob: eef60829f8e0868f15c8b4305c45229b6d69e634 (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
25
26
27
28
29
{ lib, stdenv, fetchurl, blas, gfortran, liblapack }:

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";
  };

  buildInputs = [ blas gfortran.cc.lib liblapack ];

  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 = stdenv.lib.platforms.unix;
  };
}