mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
22 lines
639 B
Nix
22 lines
639 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, catkin }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-kinetic-yaml-cpp-0-3";
|
||
|
version = "0.3.1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = https://github.com/yujinrobot-release/yaml_cpp_0_3-release/archive/release/kinetic/yaml_cpp_0_3/0.3.1-0.tar.gz;
|
||
|
sha256 = "434e23ecd0af3c87b26327868dfdc51f662cb9eef6b8adfc4cbf191dd2931a36";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ catkin ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Legacy version of yaml cpp without boost, namespaced to avoid system conflicts.'';
|
||
|
#license = lib.licenses.MIT;
|
||
|
};
|
||
|
}
|