commit 4566528271f492efbddcde1d9e7690b51d24b65a
parent 884fa830bd59f22d3b796da1d176257fa76004ef
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date: Sun, 25 Jan 2026 15:18:42 +0400
Drop vulkanscenegraph
Diffstat:
1 file changed, 0 insertions(+), 53 deletions(-)
diff --git a/pkgs/by-name/vu/vulkanscenegraph/package.nix b/pkgs/by-name/vu/vulkanscenegraph/package.nix
@@ -1,53 +0,0 @@
-{
- lib,
- stdenv,
- fetchFromGitHub,
- fetchpatch,
- cmake,
- pkg-config,
- glslang,
- libxcb,
- vulkan-headers,
- vulkan-loader,
-}:
-
-stdenv.mkDerivation (finalAttrs: {
- pname = "vulkanscenegraph";
- version = "1.1.12";
-
- src = fetchFromGitHub {
- owner = "vsg-dev";
- repo = "VulkanSceneGraph";
- tag = "v${finalAttrs.version}";
- hash = "sha256-DdTfn8URLJkF5Nhkl8ZCq+brKK/T+9FipaeTON4Dsfw=";
- };
-
- 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
- ];
-
- buildInputs = [
- glslang
- libxcb
- vulkan-headers
- vulkan-loader
- ];
-
- meta = {
- description = "Vulkan & C++17 based Scene Graph Project";
- homepage = "http://www.vulkanscenegraph.org";
- license = lib.licenses.mit;
- maintainers = [ lib.maintainers.sikmir ];
- platforms = lib.platforms.linux;
- skip.ci = stdenv.isDarwin;
- };
-})