Unverified Commit 0e96b002 authored by Masum Reza's avatar Masum Reza Committed by GitHub
Browse files

entt: 3.13.2 -> 3.14.0 (#360968)

parents 0b3b7f56 92374ea8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
  pname = "entt";
  version = "3.13.2";
  version = "3.14.0";

  src = fetchFromGitHub {
    owner = "skypjack";
    repo = "entt";
    rev = "v${version}";
    hash = "sha256-botX9T9KEXbctI1hUOt983y2rtWDeXyTonGYpJ6eGr8=";
    hash = "sha256-IPAM7fr/tvSOMKWUbXbloNAnlp5t7J0ynSsTMZ2jKYs=";
  };

  nativeBuildInputs = [ cmake ];