linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / entt / default.nix
blob34a4f93bb860e22baaf76d11804ba58a59be34b4
1 { lib, stdenv, fetchFromGitHub, cmake }:
2 stdenv.mkDerivation rec {
3   pname = "entt";
4   version = "3.7.1";
6   src = fetchFromGitHub {
7     owner = "skypjack";
8     repo = "entt";
9     rev = "v${version}";
10     sha256 = "sha256-t1QRqasb82W277XEV2FG5JrsQWIWZ0G5V7wLI+p4MpQ=";
11   };
13   nativeBuildInputs = [ cmake ];
15   meta = with lib; {
16     homepage = "https://github.com/skypjack/entt";
17     description = "A header-only, tiny and easy to use library for game programming and much more written in modern C++";
18     maintainers = with maintainers; [ twey ];
19     license = licenses.mit;
20   };