2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake }:
|
2020-10-29 12:07:56 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "entt";
|
2021-08-08 11:46:14 +01:00
|
|
|
version = "3.8.1";
|
2020-10-29 12:07:56 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "skypjack";
|
|
|
|
repo = "entt";
|
|
|
|
rev = "v${version}";
|
2021-08-08 11:46:14 +01:00
|
|
|
sha256 = "sha256-vg2tpGyZZM8c97Qko88JMP5YNPZx5kI5qRkkRclvZtA=";
|
2020-10-29 12:07:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-10-29 12:07:56 +00:00
|
|
|
homepage = "https://github.com/skypjack/entt";
|
|
|
|
description = "A header-only, tiny and easy to use library for game programming and much more written in modern C++";
|
|
|
|
maintainers = with maintainers; [ twey ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|