1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-07-14 14:10:37 +03:00
nix-ros-overlay/distros/eloquent/ament-cmake-lint-cmake/default.nix
2020-01-17 21:21:17 -05:00

24 lines
869 B
Nix

# Copyright 2020 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake-core, ament-cmake-test, ament-lint-cmake }:
buildRosPackage {
pname = "ros-eloquent-ament-cmake-lint-cmake";
version = "0.8.1-r1";
src = fetchurl {
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/eloquent/ament_cmake_lint_cmake/0.8.1-1.tar.gz";
name = "0.8.1-1.tar.gz";
sha256 = "5a6dafdee4790e5acbc6317cbc5b5efa40bfbdd1322ae549ac1c5b913b3ab932";
};
buildType = "ament_cmake";
propagatedBuildInputs = [ ament-cmake-test ament-lint-cmake ];
nativeBuildInputs = [ ament-cmake-core ament-cmake-test ament-lint-cmake ];
meta = {
description = ''The CMake API for ament_lint_cmake to lint CMake code using cmakelint.'';
license = with lib.licenses; [ asl20 ];
};
}