mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 06:00:38 +03:00
25 lines
833 B
Nix
25 lines
833 B
Nix
|
|
# Copyright 2019 Open Source Robotics Foundation
|
|
# Distributed under the terms of the BSD license
|
|
|
|
{ lib, buildRosPackage, fetchurl, pythonPackages, ament-lint, ament-flake8, ament-pep257 }:
|
|
buildRosPackage {
|
|
pname = "ros-dashing-ament-copyright";
|
|
version = "0.7.11-r1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/ros2-gbp/ament_lint-release/archive/release/dashing/ament_copyright/0.7.11-1.tar.gz";
|
|
name = "0.7.11-1.tar.gz";
|
|
sha256 = "949c8d7270f14a6c9fb53b96dd99ade08c92fb9e1a57e20b8765fdea7ed2c506";
|
|
};
|
|
|
|
buildType = "ament_python";
|
|
checkInputs = [ ament-flake8 pythonPackages.pytest ament-pep257 ];
|
|
propagatedBuildInputs = [ ament-lint ];
|
|
|
|
meta = {
|
|
description = ''The ability to check source files for copyright and license
|
|
information.'';
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|