mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
24 lines
783 B
Nix
24 lines
783 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ecl-build, ecl-config, ecl-license }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-ecl-console";
|
|
version = "1.0.3-r2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/yujinrobot-release/ecl_lite-release/archive/release/dashing/ecl_console/1.0.3-2.tar.gz";
|
|
name = "1.0.3-2.tar.gz";
|
|
sha256 = "a8a83e04e885a2d239be975e3ad0c2fd9bbb5a259dfe0e9004069e7c4210a4ae";
|
|
};
|
|
|
|
buildType = "ament_cmake";
|
|
propagatedBuildInputs = [ ecl-build ecl-config ecl-license ];
|
|
nativeBuildInputs = [ ament-cmake-ros ];
|
|
|
|
meta = {
|
|
description = ''Color codes for ansii consoles.'';
|
|
license = with lib.licenses; [ bsdOriginal ];
|
|
};
|
|
}
|