17 lines
607 B
Nix
17 lines
607 B
Nix
# Automatically generated by: ros2nix --output-as-nix-pkg-name --fetch --flake --distro jazzy --output-dir .nix
|
|
{ lib, buildRosPackage, fetchgit, ament-copyright, ament-flake8, ament-pep257, pythonPackages }:
|
|
buildRosPackage rec {
|
|
pname = "ros-jazzy-env-manager";
|
|
version = "0.0.0";
|
|
|
|
src = ../env_manager/env_manager;
|
|
|
|
buildType = "ament_python";
|
|
# sourceRoot = "${src.name}/env_manager/env_manager/";
|
|
checkInputs = [ ament-copyright ament-flake8 ament-pep257 pythonPackages.pytest ];
|
|
|
|
meta = {
|
|
description = "TODO: Package description";
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|