nixpkgs-suyu/pkgs/applications/science/math/csdp/default.nix
Vincent Laporte 71e0ce571b csdp: fix build on Darwin
When the `INSTALL` file is present, `make` claims that the `install`
target is up-to-date.
2016-04-22 11:53:43 +02:00

28 lines
679 B
Nix

{ lib, stdenv, fetchurl, blas, gfortran, liblapack }:
stdenv.mkDerivation {
name = "csdp-6.1.1";
src = fetchurl {
url = "http://www.coin-or.org/download/source/Csdp/Csdp-6.1.1.tgz";
sha256 = "1f9ql6cjy2gwiyc51ylfan24v1ca9sjajxkbhszlds1lqmma8n05";
};
buildInputs = [ blas gfortran 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";
};
}