mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 09:34:36 +00:00
csdp: init at 6.1.1
This commit is contained in:
parent
26eaa93094
commit
772ec9cae3
27
pkgs/applications/science/math/csdp/default.nix
Normal file
27
pkgs/applications/science/math/csdp/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -11031,6 +11031,8 @@ let
|
||||
desktopName = "Conkeror";
|
||||
};
|
||||
|
||||
csdp = callPackage ../applications/science/math/csdp { };
|
||||
|
||||
cuneiform = builderDefsPackage (import ../tools/graphics/cuneiform) {
|
||||
inherit cmake patchelf;
|
||||
imagemagick = imagemagick;
|
||||
|
Loading…
Reference in New Issue
Block a user