mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
entt: init at 3.5.2
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
4c92053749
commit
5a17b0759e
21
pkgs/development/libraries/entt/default.nix
Normal file
21
pkgs/development/libraries/entt/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
@ -12465,6 +12465,8 @@ in
|
||||
|
||||
enet = callPackage ../development/libraries/enet { };
|
||||
|
||||
entt = callPackage ../development/libraries/entt { };
|
||||
|
||||
epoxy = callPackage ../development/libraries/epoxy {};
|
||||
|
||||
libesmtp = callPackage ../development/libraries/libesmtp { };
|
||||
|
Loading…
Reference in New Issue
Block a user