mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-17 07:30:25 +03:00
25 lines
804 B
Nix
25 lines
804 B
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, python3Packages, pythonPackages }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-eloquent-ament-package";
|
||
|
version = "0.8.7-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/ros2-gbp/ament_package-release/archive/release/eloquent/ament_package/0.8.7-1.tar.gz";
|
||
|
name = "0.8.7-1.tar.gz";
|
||
|
sha256 = "5f36b1a8fa0ca50311b85dd861a13970f9d3351a14c80a0744fdd960fa6c56ac";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_python";
|
||
|
checkInputs = [ python3Packages.flake8 pythonPackages.pytest ];
|
||
|
propagatedBuildInputs = [ python3Packages.setuptools ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''The parser for the manifest files in the ament buildsystem.'';
|
||
|
license = with lib.licenses; [ asl20 ];
|
||
|
};
|
||
|
}
|