2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
|
|
# Distributed under the terms of the BSD license
|
|
|
|
|
2019-11-07 17:17:35 -05:00
|
|
|
{ lib, buildRosPackage, fetchurl, ament-flake8, ament-lint-common, pythonPackages, ament-pep257, ament-copyright, ament-lint-auto }:
|
2019-09-06 12:16:22 -04:00
|
|
|
buildRosPackage {
|
2019-09-04 17:11:04 -04:00
|
|
|
pname = "ros-dashing-autoware-auto-create-pkg";
|
2019-11-07 17:17:35 -05:00
|
|
|
version = "0.0.2-r1";
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-07 17:17:35 -05:00
|
|
|
url = "https://gitlab.com/AutowareAuto/AutowareAuto-release/repository/archive.tar.gz?ref=release/dashing/autoware_auto_create_pkg/0.0.2-1";
|
2019-09-06 12:16:03 -04:00
|
|
|
name = "archive.tar.gz";
|
2019-11-07 17:17:35 -05:00
|
|
|
sha256 = "c8af52d226d50829530ab30c2b5aac85dbce024b9e0fee5e5e557b5e9316ae05";
|
2019-09-04 17:11:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildType = "ament_python";
|
2019-11-07 17:17:35 -05:00
|
|
|
checkInputs = [ ament-flake8 pythonPackages.pytest ament-lint-common ament-pep257 ament-copyright ament-lint-auto ];
|
2019-09-04 17:11:04 -04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''A command line tool to create a boiler-plate package'';
|
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
};
|
|
|
|
}
|