nixpkgs/pkgs/development/libraries/science/math/scs/default.nix

53 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, blas, lapack, gfortran, fixDarwinDylibNames }:
2018-08-23 22:26:41 +01:00
assert (!blas.isILP64) && (!lapack.isILP64);
2020-04-17 20:00:19 +01:00
2018-08-23 22:26:41 +01:00
stdenv.mkDerivation rec {
pname = "scs";
version = "2.1.1";
2018-08-23 22:26:41 +01:00
src = fetchFromGitHub {
owner = "cvxgrp";
repo = "scs";
rev = version;
sha256 = "14g5m3lcvrbwpq1bq0liq00jh0gm1947lg3z4jfsp43f6p5alb20";
2018-08-23 22:26:41 +01:00
};
# Actually link and add libgfortran to the rpath
postPatch = ''
substituteInPlace scs.mk \
--replace "#-lgfortran" "-lgfortran" \
--replace "gcc" "cc"
2018-08-23 22:26:41 +01:00
'';
nativeBuildInputs = stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
buildInputs = [ blas lapack gfortran.cc.lib ];
2018-08-23 22:26:41 +01:00
doCheck = true;
# Test demo requires passing data and seed; numbers chosen arbitrarily.
postCheck = ''
./out/demo_socp_indirect 42 0.42 0.42 42
2018-08-23 22:26:41 +01:00
'';
installPhase = ''
runHook preInstall
2018-08-23 22:26:41 +01:00
mkdir -p $out/lib
cp -r include $out/
cp out/*.a out/*.so out/*.dylib $out/lib/
runHook postInstall
2018-08-23 22:26:41 +01:00
'';
meta = with stdenv.lib; {
description = "Splitting Conic Solver";
longDescription = ''
Numerical optimization package for solving large-scale convex cone problems
'';
homepage = "https://github.com/cvxgrp/scs";
2018-08-23 22:26:41 +01:00
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.bhipple ];
};
}