nixpkgs/pkgs/development/libraries/urdfdom/default.nix
2023-06-18 14:27:39 -04:00

34 lines
1.1 KiB
Nix

{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, pkg-config, validatePkgConfig
, urdfdom-headers, console-bridge, tinyxml }:
stdenv.mkDerivation rec {
pname = "urdfdom";
version = "3.1.1";
src = fetchFromGitHub {
owner = "ros";
repo = pname;
rev = version;
hash = "sha256-UdkGJAXK3Q8QJaqMZBA5/FKUgWq9EVeqkqwVewTlTD8=";
};
patches = [
# Fix CMake relative install dir assumptions (https://github.com/ros/urdfdom/pull/142)
(fetchpatch {
url = "https://github.com/ros/urdfdom/commit/cbe6884d267779463bb444be851f6404e692cc0a.patch";
hash = "sha256-1gTRKIGqiSRion76bGecSfFJSBskYUJguUIa6ePIiX4=";
})
];
nativeBuildInputs = [ cmake pkg-config validatePkgConfig ];
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";
homepage = "https://github.com/ros/urdfdom";
license = licenses.bsd3;
maintainers = with maintainers; [ lopsided98 ];
platforms = platforms.all;
};
}