entt: 3.13.1 -> 3.13.2

This commit is contained in:
R. Ryantm 2024-04-10 12:51:43 +00:00
parent c81c241415
commit 4e76f4085b
1 changed files with 2 additions and 2 deletions

View File

@ -1,13 +1,13 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "entt";
version = "3.13.1";
version = "3.13.2";
src = fetchFromGitHub {
owner = "skypjack";
repo = "entt";
rev = "v${version}";
hash = "sha256-TZuKgpLJCy3uct39SFSVi4b4lyldcfJ3AQNrz3OT3Ow=";
hash = "sha256-botX9T9KEXbctI1hUOt983y2rtWDeXyTonGYpJ6eGr8=";
};
nativeBuildInputs = [ cmake ];