1
0
Fork 0
mirror of https://github.com/lopsided98/nix-ros-overlay.git synced 2025-06-18 21:38:40 +03:00
nix-ros-overlay/dashing/autoware-auto-algorithm/default.nix

25 lines
872 B
Nix
Raw Normal View History

# Copyright 2019 Open Source Robotics Foundation
# Distributed under the terms of the BSD license
{ lib, buildRosPackage, fetchurl, ament-lint-common, ament-cmake, ament-lint-auto, autoware-auto-cmake, ament-cmake-gtest }:
buildRosPackage {
pname = "ros-dashing-autoware-auto-algorithm";
version = "0.0.2-r1";
src = fetchurl {
url = "https://gitlab.com/AutowareAuto/AutowareAuto-release/repository/archive.tar.gz?ref=release/dashing/autoware_auto_algorithm/0.0.2-1";
name = "archive.tar.gz";
sha256 = "334f6c5e56dde2f169a87791046a90fc89900ae99d95b687c4210272229d4730";
};
buildType = "ament_cmake";
checkInputs = [ ament-lint-common ament-cmake-gtest ament-lint-auto ];
nativeBuildInputs = [ autoware-auto-cmake ament-cmake ];
meta = {
description = ''Generic algorithms like sort'';
license = with lib.licenses; [ asl20 ];
};
}