osqp: init at 0.6.0

This commit is contained in:
Remy Goldschmidt 2020-07-23 06:08:15 -07:00
parent b4784dbb34
commit c473490524
No known key found for this signature in database
GPG key ID: 89AA00C2ADDDC8DF
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "osqp";
version = "0.6.0";
src = fetchFromGitHub {
owner = "oxfordcontrol";
repo = "osqp";
rev = "v${version}";
sha256 = "1gwk1bqsk0rd85zf7xplbwq822y5pnxjmqc14jj6knqbab9afvrs";
fetchSubmodules = true;
};
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "A quadratic programming solver using operator splitting";
homepage = "https://osqp.org";
license = licenses.asl20;
maintainers = with maintainers; [ taktoa ];
platforms = platforms.all;
};
}

View file

@ -5837,6 +5837,8 @@ in
osl = callPackage ../development/compilers/osl { };
osqp = callPackage ../development/libraries/science/math/osqp { };
ossec = callPackage ../tools/security/ossec {};
osslsigncode = callPackage ../development/tools/osslsigncode {};