summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-11-20 13:22:04 +0800
committerGitHub <noreply@github.com>2022-11-20 13:22:04 +0800
commit145b2392c27764bbed8e25b51ba3a63d12f89195 (patch)
treef842c2312db0b5bc957711ae36fe4069c9dd841f /pkgs/development
parentea76cad34d64ce213de5992154031bf0c9b75ace (diff)
parent3c77bae4c3c7c2530ef82f4d31e2e14eca722c00 (diff)
Merge pull request #200413 from r-ryantm/auto-update/entt
entt: 3.10.3 -> 3.11.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/entt/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/development/libraries/entt/default.nix b/pkgs/development/libraries/entt/default.nix
index 01d4b88246a8a..6f88610863960 100644
--- a/pkgs/development/libraries/entt/default.nix
+++ b/pkgs/development/libraries/entt/default.nix
@@ -1,23 +1,17 @@
 { lib, stdenv, fetchFromGitHub, cmake }:
 stdenv.mkDerivation rec {
   pname = "entt";
-  version = "3.10.3";
+  version = "3.11.0";
 
   src = fetchFromGitHub {
     owner = "skypjack";
     repo = "entt";
     rev = "v${version}";
-    sha256 = "sha256-pewAwvNRCBS6rm3AmHthiayGfP71lqkAO+x6rT957Xg=";
+    sha256 = "sha256-urB1oU4Riuo9+DKmMf317bqF4hTcm/zsSLn5fpZY27o=";
   };
 
   nativeBuildInputs = [ cmake ];
 
-  # https://github.com/skypjack/entt/issues/890
-  postPatch = ''
-    substituteInPlace cmake/in/entt.pc.in \
-      --replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@
-  '';
-
   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++";