1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-29 01:35:34 +03:00
nix-ros-overlay/dashing/motion-model/default.nix

27 lines
939 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-cmake, ament-lint-common, ament-cmake-gtest, eigen, ament-lint-auto, autoware-auto-cmake }:
buildRosPackage {
pname = "ros-dashing-motion-model";
version = "0.0.2-r1";
src = fetchurl {
url = "https://gitlab.com/AutowareAuto/AutowareAuto-release/repository/archive.tar.gz?ref=release/dashing/motion_model/0.0.2-1";
name = "archive.tar.gz";
sha256 = "bd55b4808c595bde055e11e72bbab4936738a1bdf312d073a2d55cfc37a06ec9";
};
buildType = "ament_cmake";
buildInputs = [ eigen ];
checkInputs = [ ament-lint-auto ament-cmake-gtest ament-lint-common ];
propagatedBuildInputs = [ eigen ];
nativeBuildInputs = [ ament-cmake autoware-auto-cmake ];
meta = {
description = ''implementation of motion models for prediction'';
license = with lib.licenses; [ asl20 ];
};
}