nixos/packages/matplotplusplus.nix

10 lines
242 B
Nix
Raw Permalink Normal View History

2023-09-23 17:33:17 +08:00
{
2024-09-30 20:40:53 +08:00
stdenv, src, cmake, pkg-config, substituteAll
2023-10-08 13:33:32 +08:00
}: stdenv.mkDerivation
2023-09-23 17:33:17 +08:00
{
2024-01-23 13:02:19 +08:00
name = "matplotplusplus";
inherit src;
2024-09-30 20:40:53 +08:00
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" "-DMATPLOTPP_BUILD_EXAMPLES=OFF" ];
nativeBuildInputs = [ cmake pkg-config ];
2023-09-23 17:33:17 +08:00
}