mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-07-14 14:10:37 +03:00
27 lines
1 KiB
Nix
27 lines
1 KiB
Nix
![]() |
|
||
|
# Copyright 2019 Open Source Robotics Foundation
|
||
|
# Distributed under the terms of the BSD license
|
||
|
|
||
|
{ lib, buildRosPackage, fetchurl, ament-cmake-ros, ecl-license, ament-lint-common, ecl-errors, ament-cmake-gtest, ecl-config, ecl-build, ament-lint-auto }:
|
||
|
buildRosPackage {
|
||
|
pname = "ros-eloquent-ecl-filesystem";
|
||
|
version = "1.0.4-r1";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://github.com/yujinrobot-release/ecl_core-release/archive/release/eloquent/ecl_filesystem/1.0.4-1.tar.gz";
|
||
|
name = "1.0.4-1.tar.gz";
|
||
|
sha256 = "2de970c368bec3fc89d866d612f7976bd632724f0c1808bf9bb569529164595d";
|
||
|
};
|
||
|
|
||
|
buildType = "ament_cmake";
|
||
|
buildInputs = [ ecl-errors ecl-license ecl-config ecl-build ];
|
||
|
checkInputs = [ ament-lint-common ament-cmake-gtest ament-lint-auto ];
|
||
|
propagatedBuildInputs = [ ecl-errors ecl-license ecl-config ecl-build ];
|
||
|
nativeBuildInputs = [ ament-cmake-ros ];
|
||
|
|
||
|
meta = {
|
||
|
description = ''Cross platform filesystem utilities (until c++11 makes its way in).'';
|
||
|
license = with lib.licenses; [ bsdOriginal ];
|
||
|
};
|
||
|
}
|