Unverified Commit c42f4945 authored by Marcin Serwin's avatar Marcin Serwin Committed by GitHub
Browse files

vulkanscenegraph: 1.1.12 → 1.1.13 (#489147)

parents 6e30976c 66feb3ab
Loading
Loading
Loading
Loading
+2 −11
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
  lib,
  stdenv,
  fetchFromGitHub,
  fetchpatch,
  cmake,
  pkg-config,
  glslang,
@@ -13,23 +12,15 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "vulkanscenegraph";
  version = "1.1.12";
  version = "1.1.13";

  src = fetchFromGitHub {
    owner = "vsg-dev";
    repo = "VulkanSceneGraph";
    tag = "v${finalAttrs.version}";
    hash = "sha256-DdTfn8URLJkF5Nhkl8ZCq+brKK/T+9FipaeTON4Dsfw=";
    hash = "sha256-6Jxk94GPUaPxcv4dHTQKnE7n8b/2neG2Mrv94vc9ckU=";
  };

  patches = [
    # make it compatible with glslang 16.x
    (fetchpatch {
      url = "https://github.com/vsg-dev/VulkanSceneGraph/commit/313865d420bba7bb3327460c367c7526f566a74e.patch";
      hash = "sha256-hytv79AE70S/yBiI+n9RHGbHmYZW5388BiFh9l1auzU=";
    })
  ];

  nativeBuildInputs = [
    cmake
    pkg-config