Commit 786f7b01 authored by Benjamin Sparks's avatar Benjamin Sparks
Browse files

gz-utils: move spdlog to buildInputs

parent 2a05865c
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -2,11 +2,14 @@
  lib,
  stdenv,
  fetchFromGitHub,

  # nativeBuildInputs
  cmake,
  gz-cmake,

  # buildInputs
  spdlog,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "gz-utils";
  version = "3.1.1";
@@ -21,9 +24,10 @@ stdenv.mkDerivation (finalAttrs: {
  nativeBuildInputs = [
    cmake
    gz-cmake
    spdlog
  ];

  buildInputs = [ spdlog ];

  meta = {
    description = "General purpose utility classes and functions for the Gazebo libraries";
    homepage = "https://gazebosim.org/home";