1 { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, validatePkgConfig }:
3 stdenv.mkDerivation rec {
4 pname = "urdfdom-headers";
7 src = fetchFromGitHub {
9 repo = "urdfdom_headers";
11 hash = "sha256-FQSnYuTc40MOxyFsMPfoCIonP+4AUQxdq74eoQ9tOoo=";
15 # Fix CMake relative install dir assumptions (https://github.com/ros/urdfdom_headers/pull/66)
17 url = "https://github.com/ros/urdfdom_headers/commit/6e0cea148c3a7123f8367cd48d5709a4490c32f1.patch";
18 hash = "sha256-LC2TACGma/k6+WE9fTkzY98SgJYKsVuj5O9v84Q5mQ4=";
22 nativeBuildInputs = [ cmake validatePkgConfig ];
25 description = "URDF (U-Robot Description Format) headers provides core data structure headers for URDF";
26 homepage = "https://github.com/ros/urdfdom_headers";
27 license = licenses.bsd3;
28 maintainers = with maintainers; [ lopsided98 ];
29 platforms = platforms.all;