2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake }:
|
2020-12-27 14:24:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "entt";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "3.13.2";
|
2020-12-27 14:24:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "skypjack";
|
|
|
|
repo = "entt";
|
|
|
|
rev = "v${version}";
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-botX9T9KEXbctI1hUOt983y2rtWDeXyTonGYpJ6eGr8=";
|
2020-12-27 14:24:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-12-27 14:24:52 +00:00
|
|
|
homepage = "https://github.com/skypjack/entt";
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Header-only, tiny and easy to use library for game programming and much more written in modern C++";
|
2020-12-27 14:24:52 +00:00
|
|
|
maintainers = with maintainers; [ twey ];
|
2022-01-03 16:56:52 +00:00
|
|
|
platforms = platforms.all;
|
2020-12-27 14:24:52 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|