6 stdenv.mkDerivation rec{
9 src = fetchFromGitHub {
13 sha256 = "sha256-k4zCEQxO0N/o1hDYxw5p9u0BMwP/5oIoe/4yw7oqEo0=";
16 nativeBuildInputs = [ cmake ];
18 # disable tests until upstream fixes build issues with gcc 12
19 # see https://github.com/Neargye/magic_enum/issues/235
22 "-DMAGIC_ENUM_OPT_BUILD_TESTS=OFF"
26 description = "Static reflection for enums (to string, from string, iteration) for modern C++";
27 homepage = "https://github.com/Neargye/magic_enum";
28 license = licenses.mit;
29 maintainers = with maintainers; [ Alper-Celik ];