mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
23 lines
894 B
Nix
23 lines
894 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, ament-flake8, ament-lint-common, pythonPackages, ament-pep257, ament-copyright, ament-lint-auto }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-autoware-auto-create-pkg";
|
|
version = "0.0.2-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://gitlab.com/AutowareAuto/AutowareAuto-release/repository/archive.tar.gz?ref=release/dashing/autoware_auto_create_pkg/0.0.2-1";
|
|
name = "archive.tar.gz";
|
|
sha256 = "c8af52d226d50829530ab30c2b5aac85dbce024b9e0fee5e5e557b5e9316ae05";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-flake8 pythonPackages.pytest ament-lint-common ament-pep257 ament-copyright ament-lint-auto ];
|
|
|
|
meta = {
|
|
description = ''A command line tool to create a boiler-plate package'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|