2021-01-22 00:00:13 +07:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake }:
|
2018-10-24 09:19:26 +09:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "QuadProgpp";
|
2018-10-24 09:19:26 +09:00
|
|
|
version = "4b6bd65f09fbff99c172a86d6e96ca74449b323f";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "liuq";
|
|
|
|
repo = "QuadProgpp";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "02r0dlk2yjpafknvm945vbgs4sl26w2i1gw3pllar9hi364y8hnx";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-01-22 00:00:13 +07:00
|
|
|
meta = with lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://github.com/liuq/QuadProgpp";
|
2018-10-24 09:19:26 +09:00
|
|
|
license = licenses.mit;
|
|
|
|
description = ''
|
|
|
|
A C++ library for Quadratic Programming which implements the
|
|
|
|
Goldfarb-Idnani active-set dual method.
|
|
|
|
'';
|
2019-12-05 16:29:48 +09:00
|
|
|
maintainers = with maintainers; [ ];
|
2021-03-03 18:36:02 +07:00
|
|
|
platforms = platforms.all;
|
2018-10-24 09:19:26 +09:00
|
|
|
};
|
|
|
|
}
|