Unverified Commit fcbd2f78 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #238463 from lopsided98/urdfdom-update

urdfdom: 3.1.0 -> 3.1.1
parents d50f95c6 f68a0d0f
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, pkg-config, validatePkgConfig
, tinyxml, boost, urdfdom-headers, console-bridge }:
, urdfdom-headers, console-bridge, tinyxml }:

stdenv.mkDerivation rec {
  pname = "urdfdom";
  version = "3.1.0";
  version = "3.1.1";

  src = fetchFromGitHub {
    owner = "ros";
    repo = pname;
    rev = version;
    hash = "sha256-9MJnify4zcDBSZVJZCN/XupN5xax+U4PLee54gVVw3Q=";
    hash = "sha256-UdkGJAXK3Q8QJaqMZBA5/FKUgWq9EVeqkqwVewTlTD8=";
  };

  patches = [
@@ -21,8 +21,7 @@ stdenv.mkDerivation rec {
  ];

  nativeBuildInputs = [ cmake pkg-config validatePkgConfig ];
  buildInputs = [ tinyxml boost ];
  propagatedBuildInputs = [ urdfdom-headers console-bridge ];
  propagatedBuildInputs = [ urdfdom-headers console-bridge tinyxml ];

  meta = with lib; {
    description = "Provides core data structures and a simple XML parser for populating the class data structures from an URDF file";