about summary refs log tree commit diff
path: root/pkgs/development/libraries/entt/default.nix
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2024-02-03 21:03:56 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2024-02-03 21:03:56 +0000
commit6a6a9970595dca948d922a1bf18cd7881c0b3548 (patch)
treec103539c590b8ed00a0226678dca1ba60d420b04 /pkgs/development/libraries/entt/default.nix
parent144fcada81a35097b15aa5dedd1ba87c7a94bfce (diff)
entt: 3.13.0 -> 3.13.1
Diffstat (limited to 'pkgs/development/libraries/entt/default.nix')
-rw-r--r--pkgs/development/libraries/entt/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/entt/default.nix b/pkgs/development/libraries/entt/default.nix
index ac12b2e5a561c..2f7a86c7f1135 100644
--- a/pkgs/development/libraries/entt/default.nix
+++ b/pkgs/development/libraries/entt/default.nix
@@ -1,13 +1,13 @@
 { lib, stdenv, fetchFromGitHub, cmake }:
 stdenv.mkDerivation rec {
   pname = "entt";
-  version = "3.13.0";
+  version = "3.13.1";
 
   src = fetchFromGitHub {
     owner = "skypjack";
     repo = "entt";
     rev = "v${version}";
-    hash = "sha256-LiQBKpXSr5+zOgtc+8snGqN/Aq3EHhQjlMBuqDOlSz0=";
+    hash = "sha256-TZuKgpLJCy3uct39SFSVi4b4lyldcfJ3AQNrz3OT3Ow=";
   };
 
   nativeBuildInputs = [ cmake ];