1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 06:00:38 +03:00
nix-ros-overlay/colcon/ros.nix
Ben Wolsieffer 40ccc530bb Initial ROS 2 support.
The basic packages build, but there is no guarantee that they work correctly.
2019-09-05 22:47:17 -04:00

34 lines
821 B
Nix

{ lib, buildPythonPackage, fetchPypi, isPy27, catkin-pkg, colcon-cmake
, colcon-core, colcon-pkg-config, colcon-python-setup-py
, colcon-recursive-crawl }:
buildPythonPackage rec {
pname = "colcon-ros";
version = "0.3.12";
src = fetchPypi {
inherit pname version;
sha256 = "1ykvg36dpwwidkyz8wzjnb1sqngkxnbih0m7wv80vqxzrnzjfckr";
};
propagatedBuildInputs = [
catkin-pkg
colcon-cmake
colcon-core
colcon-pkg-config
colcon-python-setup-py
colcon-recursive-crawl
];
# Requires unpackaged dependencies
doCheck = false;
disabled = isPy27;
meta = with lib; {
description = "An extension for colcon-core to support ROS packages.";
homepage = "https://colcon.readthedocs.io";
license = licenses.asl20;
maintainers = with maintainers; [ lopsided98 ];
};
}