about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/magic-enum/default.nix
blob: ccf439ca91906684edd2ec1e79e4cb436cca824d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ fetchFromGitHub
, lib
, stdenv
, cmake
}:
stdenv.mkDerivation rec{
  pname = "magic-enum";
  version = "0.8.2";
  src = fetchFromGitHub {
    owner = "Neargye";
    repo = "magic_enum";
    rev = "v${version}";
    sha256 = "sha256-k4zCEQxO0N/o1hDYxw5p9u0BMwP/5oIoe/4yw7oqEo0=";
  };

  nativeBuildInputs = [ cmake ];

  # disable tests until upstream fixes build issues with gcc 12
  # see https://github.com/Neargye/magic_enum/issues/235
  doCheck = false;
  cmakeFlags = [
    "-DMAGIC_ENUM_OPT_BUILD_TESTS=OFF"
  ];

  meta = with lib;{
    description = "Static reflection for enums (to string, from string, iteration) for modern C++";
    homepage = "https://github.com/Neargye/magic_enum";
    license = licenses.mit;
    maintainers = with maintainers; [ Alper-Celik ];
  };
}