10 stdenv.mkDerivation (finalAttrs: {
12 #version = "0.1.3"; not building, use master instead
13 version = "0-unstable-2024-07-30";
15 src = fetchFromGitHub {
18 rev = "3ab7d6059d9d7da31ec9ff6a8ca84fd8ec5ab5e2";
19 hash = "sha256-TRNHjW2/YDfGJHTG9sy2nmHyk6+HlBGIabPm87TETE8=";
22 nativeBuildInputs = [ cmake ];
29 "-DHPIPM_FIND_BLASFEO=ON"
30 "-DBUILD_SHARED_LIBS=ON"
31 ] ++ lib.optionals (!stdenv.hostPlatform.isx86_64) [ "-DTARGET=GENERIC" ];
34 description = "High-performance interior-point-method QP and QCQP solvers";
35 homepage = "https://github.com/giaf/hpipm";
36 changelog = "https://github.com/giaf/hpipm/blob/${finalAttrs.src.rev}/Changelog.txt";
37 license = lib.licenses.bsd2;
38 maintainers = with lib.maintainers; [ nim65s ];