5a17b0759e
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
22 lines
587 B
Nix
22 lines
587 B
Nix
{ stdenv, fetchFromGitHub, cmake }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "entt";
|
|
version = "3.5.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "skypjack";
|
|
repo = "entt";
|
|
rev = "v${version}";
|
|
sha256 = "1p09p1wn8cbj17z83iyyy2498wy1gzyi2mmqi5i2cxglslbm6hy0";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with stdenv.lib; {
|
|
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;
|
|
};
|
|
}
|