csdp: init at 6.1.1

This commit is contained in:
Russell O'Connor 2015-09-08 18:23:24 -04:00 committed by Russell O'Connor
parent 26eaa93094
commit 772ec9cae3
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ 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 = ''
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";
};
}

View file

@ -11031,6 +11031,8 @@ let
desktopName = "Conkeror";
};
csdp = callPackage ../applications/science/math/csdp { };
cuneiform = builderDefsPackage (import ../tools/graphics/cuneiform) {
inherit cmake patchelf;
imagemagick = imagemagick;