entt: 3.7.0 -> 3.7.1

This commit is contained in:
R. RyanTM 2021-04-14 23:30:23 +00:00 committed by tomberek
parent 13ff90fa44
commit 12ac4de46a

View File

@ -1,13 +1,13 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "entt";
version = "3.7.0";
version = "3.7.1";
src = fetchFromGitHub {
owner = "skypjack";
repo = "entt";
rev = "v${version}";
sha256 = "sha256-qDjt74nijZhXW7F7GW0CSv6JWOc/kXN7ndbkwSO0+1s=";
sha256 = "sha256-t1QRqasb82W277XEV2FG5JrsQWIWZ0G5V7wLI+p4MpQ=";
};
nativeBuildInputs = [ cmake ];