mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
23 lines
616 B
Nix
23 lines
616 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "entt";
|
|
version = "3.11.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "skypjack";
|
|
repo = "entt";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-/ZvMyhvnlu/5z4UHhPe8WMXmSA45Kjbr6bRqyVJH310=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with 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 ];
|
|
platforms = platforms.all;
|
|
license = licenses.mit;
|
|
};
|
|
}
|