Skip to content

Commit

Permalink
scs: init at 2.0.2 (#45294)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhipple authored and xeji committed Aug 23, 2018
1 parent 714ef2f commit 291de70
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
44 changes: 44 additions & 0 deletions pkgs/development/libraries/science/math/scs/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{ stdenv, fetchFromGitHub, blas, liblapack, gfortran }:

stdenv.mkDerivation rec {
name = "scs-${version}";
version = "2.0.2";

src = fetchFromGitHub {
owner = "cvxgrp";
repo = "scs";
rev = "v${version}";
sha256 = "17lbcmcsniqlyzgbzmjipfd0rrk25a8hzh7l5wl2wp1iwsd8c3a9";
};

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

# Actually link and add libgfortran to the rpath
patchPhase = ''
sed -i 's/#-lgfortran/-lgfortran/' scs.mk
'';

doCheck = true;

# Test demo requires passing any int as $1; 42 chosen arbitrarily
checkPhase = ''
./out/demo_socp_indirect 42
'';

installPhase = ''
mkdir -p $out/lib
cp -r include $out/
cp out/*.a out/*.so $out/lib/
'';

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;
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.bhipple ];
};
}
4 changes: 4 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20719,6 +20719,10 @@ with pkgs;

petsc = callPackage ../development/libraries/science/math/petsc { };

scs = callPackage ../development/libraries/science/math/scs {
liblapack = liblapackWithoutAtlas;
};

sage = callPackage ../applications/science/math/sage {
nixpkgs = pkgs;
};
Expand Down

0 comments on commit 291de70

Please sign in to comment.